svn commit: samba r18927 - in branches/SAMBA_3_0/source/nsswitch: .

jerry at samba.org jerry at samba.org
Tue Sep 26 18:31:47 GMT 2006


Author: jerry
Date: 2006-09-26 18:31:47 +0000 (Tue, 26 Sep 2006)
New Revision: 18927

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

Log:
Fix build.  *please* compile the code at least once before checking it in.



Modified:
   branches/SAMBA_3_0/source/nsswitch/pam_winbind.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/pam_winbind.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/pam_winbind.c	2006-09-26 17:22:15 UTC (rev 18926)
+++ branches/SAMBA_3_0/source/nsswitch/pam_winbind.c	2006-09-26 18:31:47 UTC (rev 18927)
@@ -124,7 +124,7 @@
 		goto config_from_pam;
 	}
 
-	if (iniparser_getboolean(*d, ("global:debug", False))) {
+	if (iniparser_getboolean(*d, "global:debug", False)) {
 		ctrl |= WINBIND_DEBUG_ARG;
 	}
 
@@ -140,7 +140,7 @@
 		ctrl |= WINBIND_SILENT;
 	}
 
-	if (iniparser_getstr(*d, "global:krb5_ccache_type")) != NULL) {
+	if (iniparser_getstr(*d, "global:krb5_ccache_type") != NULL) {
 		ctrl |= WINBIND_KRB5_CCACHE_TYPE;
 	}
 	



More information about the samba-cvs mailing list