svn commit: samba r20069 - in branches/SAMBA_3_0/source/services: .

vlendec at samba.org vlendec at samba.org
Thu Dec 7 19:21:37 GMT 2006


Author: vlendec
Date: 2006-12-07 19:21:37 +0000 (Thu, 07 Dec 2006)
New Revision: 20069

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

Log:
Fix logic bug I introduced
Modified:
   branches/SAMBA_3_0/source/services/svc_netlogon.c


Changeset:
Modified: branches/SAMBA_3_0/source/services/svc_netlogon.c
===================================================================
--- branches/SAMBA_3_0/source/services/svc_netlogon.c	2006-12-07 19:18:55 UTC (rev 20068)
+++ branches/SAMBA_3_0/source/services/svc_netlogon.c	2006-12-07 19:21:37 UTC (rev 20069)
@@ -57,7 +57,7 @@
 
 static WERROR netlogon_start( const char *service )
 {
-	if ( share_defined("NETLOGON") )
+	if ( !share_defined("NETLOGON") )
 		return WERR_SERVICE_DISABLED;
 
 	return WERR_ACCESS_DENIED;



More information about the samba-cvs mailing list