svn commit: samba r8109 - in branches/SAMBA_4_0/source/rpc_server: .

abartlet at samba.org abartlet at samba.org
Mon Jul 4 02:27:19 GMT 2005


Author: abartlet
Date: 2005-07-04 02:27:18 +0000 (Mon, 04 Jul 2005)
New Revision: 8109

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

Log:
Try to print out more helpful debug messages on DCERPC server-side
gensec failure to start.

Andrew Bartlett

Modified:
   branches/SAMBA_4_0/source/rpc_server/dcesrv_auth.c


Changeset:
Modified: branches/SAMBA_4_0/source/rpc_server/dcesrv_auth.c
===================================================================
--- branches/SAMBA_4_0/source/rpc_server/dcesrv_auth.c	2005-07-04 02:25:33 UTC (rev 8108)
+++ branches/SAMBA_4_0/source/rpc_server/dcesrv_auth.c	2005-07-04 02:27:18 UTC (rev 8109)
@@ -56,7 +56,7 @@
 
 	status = gensec_server_start(dce_conn, &auth->gensec_security, call->event_ctx);
 	if (!NT_STATUS_IS_OK(status)) {
-		DEBUG(1, ("Failed to start GENSEC server code: %s\n", nt_errstr(status)));
+		DEBUG(1, ("Failed to start GENSEC for DCERPC server: %s\n", nt_errstr(status)));
 		return False;
 	}
 
@@ -64,8 +64,9 @@
 					       auth->auth_info->auth_level);
 
 	if (!NT_STATUS_IS_OK(status)) {
-		DEBUG(1, ("Failed to start GENSEC mech-specific server code (%d): %s\n", 
+		DEBUG(1, ("Failed to start GENSEC mechanism for DCERPC server: auth_type=%d, auth_level=%d: %s\n", 
 			  (int)auth->auth_info->auth_type,
+			  (int)auth->auth_info->auth_level,
 			  nt_errstr(status)));
 		return False;
 	}



More information about the samba-cvs mailing list