[SCM] Samba Shared Repository - branch master updated

Michael Adam obnox at samba.org
Sat May 25 15:12:02 MDT 2013


The branch, master has been updated
       via  c134171 winbind: Print error code on connection error in ping_dc
      from  92254d0 pidl: Recent Perl warns about "defined(@var)" constructs.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit c134171e39cbe5e788f075add32a4841451ab4de
Author: Christof Schmitt <christof.schmitt at us.ibm.com>
Date:   Fri May 24 12:40:49 2013 -0700

    winbind: Print error code on connection error in ping_dc
    
    For debugging, it is useful to include the error code in the message.
    
    Signed-off-by: Christof Schmitt <christof.schmitt at us.ibm.com>
    
    Reviewed-by: Jeremy Allison <jra at samba.org>
    Reviewed-by: Michael Adam <obnox at samba.org>
    
    Autobuild-User(master): Michael Adam <obnox at samba.org>
    Autobuild-Date(master): Sat May 25 23:11:23 CEST 2013 on sn-devel-104

-----------------------------------------------------------------------

Summary of changes:
 source3/winbindd/winbindd_dual_srv.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/winbindd_dual_srv.c b/source3/winbindd/winbindd_dual_srv.c
index 744e251..e23d048 100644
--- a/source3/winbindd/winbindd_dual_srv.c
+++ b/source3/winbindd/winbindd_dual_srv.c
@@ -690,7 +690,8 @@ NTSTATUS _wbint_PingDc(struct pipes_struct *p, struct wbint_PingDc *r)
 	status = cm_connect_netlogon(domain, &netlogon_pipe);
 	reset_cm_connection_on_error(domain, status);
         if (!NT_STATUS_IS_OK(status)) {
-                DEBUG(3, ("could not open handle to NETLOGON pipe\n"));
+		DEBUG(3, ("could not open handle to NETLOGON pipe: %s\n",
+			  nt_errstr(status)));
 		return status;
         }
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list