svn commit: samba r8676 - in branches/SAMBA_4_0/source/auth: .

tridge at samba.org tridge at samba.org
Thu Jul 21 10:57:53 GMT 2005


Author: tridge
Date: 2005-07-21 10:57:52 +0000 (Thu, 21 Jul 2005)
New Revision: 8676

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

Log:
attribute lists in ldb searches must be NULL terminated

this is what was causing the panic on the s390 box

Modified:
   branches/SAMBA_4_0/source/auth/auth_sam.c


Changeset:
Modified: branches/SAMBA_4_0/source/auth/auth_sam.c
===================================================================
--- branches/SAMBA_4_0/source/auth/auth_sam.c	2005-07-21 09:28:12 UTC (rev 8675)
+++ branches/SAMBA_4_0/source/auth/auth_sam.c	2005-07-21 10:57:52 UTC (rev 8676)
@@ -211,7 +211,7 @@
 			       NULL,
 	};
 
-	const char *domain_attrs[] =  {"nETBIOSName", "nCName"};
+	const char *domain_attrs[] =  {"nETBIOSName", "nCName", NULL};
 
 	if (domain_name) {
 		/* find the domain's DN */



More information about the samba-cvs mailing list