diff options
author | Simo Sorce <idra@samba.org> | 2006-07-04 15:49:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:19:11 -0500 |
commit | 99a0d5ca1e402c856f440f6fa256414810e8efa7 (patch) | |
tree | 3441c942115a088fe739fd2c5cd04a635a1d72ec | |
parent | d1a9ac533be5d1c5b81371bd3181c4fd89e13d7d (diff) | |
download | samba-99a0d5ca1e402c856f440f6fa256414810e8efa7.tar.gz samba-99a0d5ca1e402c856f440f6fa256414810e8efa7.tar.bz2 samba-99a0d5ca1e402c856f440f6fa256414810e8efa7.zip |
r16800: correct a probable cut&paste error
(This used to be commit c139a2293bfb66554e1be09c6824d04381de58e1)
-rw-r--r-- | source3/nsswitch/winbindd_sid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_sid.c b/source3/nsswitch/winbindd_sid.c index a4cd8f7604..d489e267cb 100644 --- a/source3/nsswitch/winbindd_sid.c +++ b/source3/nsswitch/winbindd_sid.c @@ -416,7 +416,7 @@ void winbindd_gid_to_sid(struct winbindd_cli_state *state) if (NT_STATUS_IS_OK(status)) { sid_to_string(state->response.data.sid.sid, &sid); - state->response.data.sid.type = SID_NAME_USER; + state->response.data.sid.type = SID_NAME_DOM_GRP; request_ok(state); return; } |