svn commit: samba r13022 - in trunk/source/smbd: .

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


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

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

Log:
Ensure we notice if we exit due to guest user setup fail.
This is failing for me on trunk right now...
Jeremy.

Modified:
   trunk/source/smbd/server.c


Changeset:
Modified: trunk/source/smbd/server.c
===================================================================
--- trunk/source/smbd/server.c	2006-01-18 23:23:35 UTC (rev 13021)
+++ trunk/source/smbd/server.c	2006-01-18 23:42:27 UTC (rev 13022)
@@ -842,8 +842,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