summaryrefslogtreecommitdiffstats
path: root/source/lib
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1998-11-24 16:47:49 +0000
committerLuke Leighton <lkcl@samba.org>1998-11-24 16:47:49 +0000
commit53b49b44e13a4ca9818ebc947372b1374831b568 (patch)
tree65fa8491e63dfeffecd7312c2050f43f64120c6e /source/lib
parent2bcc540af80c37b8032a23d6d0045160a7c40e32 (diff)
downloadsamba-53b49b44e13a4ca9818ebc947372b1374831b568.tar.gz
samba-53b49b44e13a4ca9818ebc947372b1374831b568.tar.xz
samba-53b49b44e13a4ca9818ebc947372b1374831b568.zip
sorting out difference between aliases and groups in the cases where
unix groups are not explicitly mapped. i.e as a PDC or BDC you can have domain groups, as a member of a domain you cannot. as a member of a domain, unmapped unix groups are assumed to be aliases, and as a PDC or BDC, unmapped unix groups are assumed to be unix groups. there is _one_ other check needed with aliases to be added: unmapped unix groups that have the same name as an NT group on the PDC (for which i will need to write an LsaLookupNames call) should be assumed to be domain groups on the PDC.
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/util_sid.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/lib/util_sid.c b/source/lib/util_sid.c
index cce360f4c19..a483f85b845 100644
--- a/source/lib/util_sid.c
+++ b/source/lib/util_sid.c
@@ -134,7 +134,10 @@ BOOL sid_split_rid(DOM_SID *sid, uint32 *rid)
if (sid->num_auths > 0)
{
sid->num_auths--;
- (*rid) = sid->sub_auths[sid->num_auths];
+ if (rid != NULL)
+ {
+ (*rid) = sid->sub_auths[sid->num_auths];
+ }
return True;
}
return False;