svn commit: samba r13023 - in branches/SAMBA_3_0/source/smbd: .

jra at samba.org jra at samba.org
Wed Jan 18 23:42:30 GMT 2006


Author: jra
Date: 2006-01-18 23:42:29 +0000 (Wed, 18 Jan 2006)
New Revision: 13023

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

Log:
Ensure we notice if we exit due to guest user setup fail.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/smbd/server.c


Changeset:
Modified: branches/SAMBA_3_0/source/smbd/server.c
===================================================================
--- branches/SAMBA_3_0/source/smbd/server.c	2006-01-18 23:42:27 UTC (rev 13022)
+++ branches/SAMBA_3_0/source/smbd/server.c	2006-01-18 23:42:29 UTC (rev 13023)
@@ -826,8 +826,10 @@
 
 	init_structs();
 
-	if (!init_guest_info())
+	if (!init_guest_info()) {
+		DEBUG(0,("ERROR: failed to setup guest info.\n"));
 		return -1;
+	}
 
 #ifdef WITH_PROFILE
 	if (!profile_setup(False)) {



More information about the samba-cvs mailing list