diff options
author | Luke Leighton <lkcl@samba.org> | 1998-11-26 00:48:31 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-11-26 00:48:31 +0000 |
commit | b20fc0046426bc6c6dfdeeef0cedcd975282576d (patch) | |
tree | 2d8ce9b6b7fd71ba6a5324c544ff9c04371cfdda /source3/groupdb | |
parent | 5ebcdbae9b0eb05570613bd939af9fc827920a29 (diff) | |
download | samba-b20fc0046426bc6c6dfdeeef0cedcd975282576d.tar.gz samba-b20fc0046426bc6c6dfdeeef0cedcd975282576d.tar.bz2 samba-b20fc0046426bc6c6dfdeeef0cedcd975282576d.zip |
we have a problem: resolution of "Primary Group RID" which we assumed
would only be a domain group rid. it can also be a local group rid,
which causes us problems in attempting to turn a unix gid into the
correct rid (domain group or local group).
sooo.... the fix is _in_ there, we just can't use it because it causes
link / knock-on problems in nmbd.
(This used to be commit e4ee6538709c33000774eb1676608f2dd67d5a30)
Diffstat (limited to 'source3/groupdb')
-rw-r--r-- | source3/groupdb/aliasdb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/groupdb/aliasdb.c b/source3/groupdb/aliasdb.c index e37f491287..648700dd86 100644 --- a/source3/groupdb/aliasdb.c +++ b/source3/groupdb/aliasdb.c @@ -92,6 +92,7 @@ LOCAL_GRP *iterate_getaliasrid(uint32 rid, LOCAL_GRP_MEMBER **mem, int *num_mem) while ((als = getaliasent(fp, mem, num_mem)) != NULL && als->rid != rid) { + DEBUG(10,("iterate: %s 0x%x", als->name, als->rid)); } if (als != NULL) |