diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-01-06 00:27:34 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2004-01-06 00:27:34 +0000 |
commit | 523a4ddd5fb851d86b50238ca4d22b98c2159c50 (patch) | |
tree | e60f26488ff311677a85209f9da2a6e129e8f6ec /source3/nsswitch/wbinfo.c | |
parent | eb1aa6a2cc0331cbbbc5ea466e5695e4df39e6ee (diff) | |
download | samba-523a4ddd5fb851d86b50238ca4d22b98c2159c50.tar.gz samba-523a4ddd5fb851d86b50238ca4d22b98c2159c50.tar.bz2 samba-523a4ddd5fb851d86b50238ca4d22b98c2159c50.zip |
(merge from 3.0)
Try to keep vl happy - shorten some of these lines.
--
Grumble... grumble... fix the build...
--
Show the sid type in name->sid translatons in a way that can be easily
understood by humans.
Andrew Bartlett
(This used to be commit c5d1e2112baa7d87cd6b9f0855c2fd8b006af01d)
Diffstat (limited to 'source3/nsswitch/wbinfo.c')
-rw-r--r-- | source3/nsswitch/wbinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/wbinfo.c b/source3/nsswitch/wbinfo.c index bca1813167..55eeb9fa39 100644 --- a/source3/nsswitch/wbinfo.c +++ b/source3/nsswitch/wbinfo.c @@ -451,7 +451,7 @@ static BOOL wbinfo_lookupname(char *name) /* Display response */ - d_printf("%s %d\n", response.data.sid.sid, response.data.sid.type); + d_printf("%s %s (%d)\n", response.data.sid.sid, sid_type_lookup(response.data.sid.type), response.data.sid.type); return True; } |