diff options
author | Michael Adam <obnox@samba.org> | 2008-11-28 10:40:01 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-12-01 04:37:21 +0100 |
commit | 7b4e54359fcd455c4aaf6a4c3d9f510d7ab17c02 (patch) | |
tree | c6fb9c20e3cc95130f27e2fba1c031133c757da8 /source3/winbindd | |
parent | 5f5fa28c5d95c0ab117a33061c318eabd4a92246 (diff) | |
download | samba-7b4e54359fcd455c4aaf6a4c3d9f510d7ab17c02.tar.gz samba-7b4e54359fcd455c4aaf6a4c3d9f510d7ab17c02.tar.bz2 samba-7b4e54359fcd455c4aaf6a4c3d9f510d7ab17c02.zip |
s3:winbindd/idmap: add diagnostic entry debug msg to idmap_backends_unixid_to_sid
Michael
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/idmap.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c index 0062c7588e..3e7be8cb7a 100644 --- a/source3/winbindd/idmap.c +++ b/source3/winbindd/idmap.c @@ -728,6 +728,10 @@ NTSTATUS idmap_backends_unixid_to_sid(const char *domname, struct id_map *id) struct idmap_domain *dom; struct id_map *maps[2]; + DEBUG(10, ("idmap_backend_unixid_to_sid: domain = '%s', xid = %d " + "(type %d)\n", + domname?domname:"NULL", id->xid.id, id->xid.type)); + maps[0] = id; maps[1] = NULL; |