diff options
author | Gerald W. Carter <jerry@samba.org> | 2008-09-25 10:43:56 -0700 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-09-25 10:46:31 -0700 |
commit | 6f46002ff6b153730635bfd4a8380792a815ce6b (patch) | |
tree | 83a9501a86fc5e71d8ec245e888b7246d2b7e709 /source3 | |
parent | f8b741eef9b94b94120800e08a4e3b3e58bc6881 (diff) | |
download | samba-6f46002ff6b153730635bfd4a8380792a815ce6b.tar.gz samba-6f46002ff6b153730635bfd4a8380792a815ce6b.tar.bz2 samba-6f46002ff6b153730635bfd4a8380792a815ce6b.zip |
idmap: Fix typo is gid2sid() that was caching using idmap_cache_set_sid2uid()
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/idmap_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/idmap_util.c b/source3/winbindd/idmap_util.c index b10a1a4ba9..9f876618be 100644 --- a/source3/winbindd/idmap_util.c +++ b/source3/winbindd/idmap_util.c @@ -121,7 +121,7 @@ backend: return NT_STATUS_NONE_MAPPED; } - idmap_cache_set_sid2uid(sid, gid); + idmap_cache_set_sid2gid(sid, gid); return NT_STATUS_OK; } |