From d65ba539a4bd9671bab6f70e140dcc6fb8f0733e Mon Sep 17 00:00:00 2001
From: Gerald Carter <jerry@samba.org>
Date: Tue, 11 Sep 2007 18:08:07 +0000
Subject: r25099: Commit fix for CVE-2007-4138 from 3.0.26 release. (This used
 to be commit aa768a4a20930833d6921ed112601873b228a64d)

---
 source3/nsswitch/idmap_ad.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'source3/nsswitch')

diff --git a/source3/nsswitch/idmap_ad.c b/source3/nsswitch/idmap_ad.c
index 6f8839e4ba..41dbb471f9 100644
--- a/source3/nsswitch/idmap_ad.c
+++ b/source3/nsswitch/idmap_ad.c
@@ -773,7 +773,7 @@ static NTSTATUS nss_ad_get_info( struct nss_domain_entry *e,
        
 	if ( gid ) {		
 		if ( !ads_pull_uint32(ads, msg, ad_schema->posix_gidnumber_attr, gid ) )
-			*gid = 0;		
+			*gid = (uint32)-1;		
 	}
 		
 	return NT_STATUS_OK;
-- 
cgit