svn commit: samba r23115 - in branches/SAMBA_4_0/source/dsdb/samdb: .

metze at samba.org metze at samba.org
Thu May 24 12:40:48 GMT 2007


Author: metze
Date: 2007-05-24 12:40:46 +0000 (Thu, 24 May 2007)
New Revision: 23115

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=23115

Log:
the attribute array needs to be NULL terminated...
hopefully fix the crash on some hosts in the farm...

metze
Modified:
   branches/SAMBA_4_0/source/dsdb/samdb/cracknames.c


Changeset:
Modified: branches/SAMBA_4_0/source/dsdb/samdb/cracknames.c
===================================================================
--- branches/SAMBA_4_0/source/dsdb/samdb/cracknames.c	2007-05-24 12:02:34 UTC (rev 23114)
+++ branches/SAMBA_4_0/source/dsdb/samdb/cracknames.c	2007-05-24 12:40:46 UTC (rev 23115)
@@ -692,7 +692,7 @@
 	const char * const _domain_attrs_display[] = { "ncName", "dnsRoot", NULL};
 	const char * const _result_attrs_display[] = { "displayName", "samAccountName", NULL};
 
-	const char * const _domain_attrs_none[] = { "ncName", "dnsRoot" };
+	const char * const _domain_attrs_none[] = { "ncName", "dnsRoot" , NULL};
 	const char * const _result_attrs_none[] = { NULL};
 
 	/* here we need to set the attrs lists for domain and result lookups */



More information about the samba-cvs mailing list