From 026852b47ad99ef507739269a81909d9dfdd3f3e Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Sun, 22 Apr 2007 09:32:14 +0000 Subject: r22444: * Validate a SID before trying to convert it to a uid/gid via the public winbindd interface * Add nss_info/*so files to the RHEL/Fedora packaging (This used to be commit 1787fcb8c1199215fcec74472c727b8c8fbf5473) --- source3/nsswitch/winbindd_sid.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/nsswitch/winbindd_sid.c b/source3/nsswitch/winbindd_sid.c index a40d35c582..648d71f2d5 100644 --- a/source3/nsswitch/winbindd_sid.c +++ b/source3/nsswitch/winbindd_sid.c @@ -199,7 +199,7 @@ static void sid2uid_lookupsid_recv( void *private_data, BOOL success, return; } - if ( (type!=SID_NAME_USER) || (type!=SID_NAME_COMPUTER) ) { + if ( (type!=SID_NAME_USER) && (type!=SID_NAME_COMPUTER) ) { DEBUG(5,("sid2uid_lookupsid_recv: Sid %s is not a user or a computer.\n", state->request.data.sid)); request_error(state); @@ -276,8 +276,8 @@ static void sid2gid_lookupsid_recv( void *private_data, BOOL success, return; } - if ( (type!=SID_NAME_DOM_GRP) || - (type!=SID_NAME_ALIAS) || + if ( (type!=SID_NAME_DOM_GRP) && + (type!=SID_NAME_ALIAS) && (type!=SID_NAME_WKN_GRP) ) { DEBUG(5,("sid2gid_lookupsid_recv: Sid %s is not a group.\n", -- cgit