diff options
author | Luke Leighton <lkcl@samba.org> | 1998-11-24 18:58:56 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-11-24 18:58:56 +0000 |
commit | 9257ab7dbfc49c7619ea8052293aa07d6a094c2e (patch) | |
tree | a9d1d86fa7bbe9cb743777a2523e60a25107509c | |
parent | 60dc5d1260b09d195d76f73f987f4a3eabe7d155 (diff) | |
download | samba-9257ab7dbfc49c7619ea8052293aa07d6a094c2e.tar.gz samba-9257ab7dbfc49c7619ea8052293aa07d6a094c2e.tar.bz2 samba-9257ab7dbfc49c7619ea8052293aa07d6a094c2e.zip |
clearer debug comments
(This used to be commit 06b9100c1c1590bad392a8d9bdd79a6c554a3cac)
-rw-r--r-- | source3/passdb/smbpassgroupunix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/passdb/smbpassgroupunix.c b/source3/passdb/smbpassgroupunix.c index 90f804e8ef..0e621cb3cc 100644 --- a/source3/passdb/smbpassgroupunix.c +++ b/source3/passdb/smbpassgroupunix.c @@ -148,7 +148,7 @@ static struct smb_passwd *getsmbunixgrpent(void *vp, { pstring sid_str; sid_to_string(sid_str, &sid); - DEBUG(0,("user %s is in a UNIX group %s that maps to an NT RID (0x%x) in another domain (%s)\n", + DEBUG(0,("user %s is in a UNIX group %s that maps to an NT Domain Alias RID (0x%x) in another domain (%s)\n", pw_buf->smb_name, unix_grpname, rid, sid_str)); continue; } @@ -170,7 +170,7 @@ static struct smb_passwd *getsmbunixgrpent(void *vp, { pstring sid_str; sid_to_string(sid_str, &sid); - DEBUG(0,("user %s is in a UNIX group %s that maps to an NT RID (0x%x) in another domain (%s)\n", + DEBUG(0,("user %s is in a UNIX group %s that maps to an NT Domain Group RID (0x%x) in another domain (%s)\n", pw_buf->smb_name, unix_grpname, rid, sid_str)); continue; } |