diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-01-31 09:37:26 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-01-31 09:37:26 +0000 |
commit | b48750fba603f9e04b08e346744bcc9c6a49a1af (patch) | |
tree | a7d5bb9c5da83d629e5bc9a582860b9876577973 /source3/lib | |
parent | 3e5fe964f9a74f1b28dbefd43c8e1b19f1e709bd (diff) | |
download | samba-b48750fba603f9e04b08e346744bcc9c6a49a1af.tar.gz samba-b48750fba603f9e04b08e346744bcc9c6a49a1af.tar.bz2 samba-b48750fba603f9e04b08e346744bcc9c6a49a1af.zip |
this fixes the problem of not being able to add a SD to a file on a
non-domain Samba server from a NT4 client.
Note that this exactly reverses a change by Jeremy on the 18th of
December 2001, reverting the code back to what JF originally wrote. I
have looked carefully with a sniffer and JFs original NULL sid is
correct (ie. it matches what NT4 does) and also fixes the problem.
Sending a blank sid (which is what jeremy's patch did) causes NT4 to
give a classic "parameter is incorrect error" and prevents the
addition of new ACLs.
(This used to be commit 9930cf97330dd93985c5558cec6b24406e90c228)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_sid.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source3/lib/util_sid.c b/source3/lib/util_sid.c index d4f8abb089..436f045e97 100644 --- a/source3/lib/util_sid.c +++ b/source3/lib/util_sid.c @@ -41,7 +41,6 @@ DOM_SID global_sid_Builtin_Guests; /* Builtin guest users */ DOM_SID global_sid_Authenticated_Users; /* All authenticated rids */ DOM_SID global_sid_Network; /* Network rids */ DOM_SID global_sid_Anonymous; /* Anonymous login */ -DOM_SID global_sid_nonexistent; /* S-0-0. Used in Lsa level 3. */ const DOM_SID *global_sid_everyone = &global_sid_World; @@ -182,7 +181,6 @@ void generate_wellknown_sids(void) string_to_sid(&global_sid_Authenticated_Users, "S-1-5-11"); string_to_sid(&global_sid_Network, "S-1-5-2"); string_to_sid(&global_sid_Anonymous, "S-1-5-7"); - string_to_sid(&global_sid_nonexistent, "S-0-0"); /* Used in Lsa level 3. */ /* Create the anon token. */ sid_copy( &anonymous_token.user_sids[0], &global_sid_World); |