diff options
author | Martin Pool <mbp@samba.org> | 2003-01-09 01:16:12 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2003-01-09 01:16:12 +0000 |
commit | 413e58e9a721e588a730fca253f160c8042f463c (patch) | |
tree | f75e74f4bfa96850d09b67d283c17645f4312cfb /source3/nsswitch | |
parent | 619fcbdb68f509834a4b4b03cb5444d843af1e89 (diff) | |
download | samba-413e58e9a721e588a730fca253f160c8042f463c.tar.gz samba-413e58e9a721e588a730fca253f160c8042f463c.tar.bz2 samba-413e58e9a721e588a730fca253f160c8042f463c.zip |
Correct misleading comment: winbindd_lookupname gets the SID for a
name, not vice versa.
(This used to be commit be835d01e10a75aecfb1b166bc6e0ea796c60cce)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_sid.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_sid.c b/source3/nsswitch/winbindd_sid.c index 44f857d6be..6ab2eaa646 100644 --- a/source3/nsswitch/winbindd_sid.c +++ b/source3/nsswitch/winbindd_sid.c @@ -72,8 +72,10 @@ enum winbindd_result winbindd_lookupsid(struct winbindd_cli_state *state) return WINBINDD_OK; } -/* Convert a sid to a string */ +/** + * Look up the SID for a qualified name. + **/ enum winbindd_result winbindd_lookupname(struct winbindd_cli_state *state) { enum SID_NAME_USE type; |