svn commit: samba r8042 - in branches/SAMBA_4_0/source/lib/messaging: .

metze at samba.org metze at samba.org
Fri Jul 1 08:14:21 GMT 2005


Author: metze
Date: 2005-07-01 08:14:21 +0000 (Fri, 01 Jul 2005)
New Revision: 8042

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

Log:
give better error message

metze
Modified:
   branches/SAMBA_4_0/source/lib/messaging/messaging.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/messaging/messaging.c
===================================================================
--- branches/SAMBA_4_0/source/lib/messaging/messaging.c	2005-07-01 08:04:48 UTC (rev 8041)
+++ branches/SAMBA_4_0/source/lib/messaging/messaging.c	2005-07-01 08:14:21 UTC (rev 8042)
@@ -393,7 +393,7 @@
 
 	status = socket_listen(msg->sock, msg->path, 0, 50, 0);
 	if (!NT_STATUS_IS_OK(status)) {
-		DEBUG(0,("Unable to setup messaging listener for '%s'\n", msg->path));
+		DEBUG(0,("Unable to setup messaging listener for '%s':%s\n", msg->path, nt_errstr(status)));
 		talloc_free(msg);
 		return NULL;
 	}



More information about the samba-cvs mailing list