[SCM] Samba Shared Repository - branch v3-6-test updated

Karolin Seeger kseeger at samba.org
Fri Feb 3 12:21:01 MST 2012


The branch, v3-6-test has been updated
       via  bb28a93 s3:client: ignore SMBecho errors (the server may not support it) (bug #8139) Signed-off-by: Jeremy Allison <jra at samba.org>
      from  a1ea963 s3-winbind: don't try to do clever thing if the username is not found while authenticating through winbind

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit bb28a9387d3c76f6f8c7f79ec61d37a499d6c8f6
Author: Stefan Metzmacher <metze at samba.org>
Date:   Tue Jan 31 10:02:18 2012 -0800

    s3:client: ignore SMBecho errors (the server may not support it) (bug #8139) Signed-off-by: Jeremy Allison <jra at samba.org>

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

Summary of changes:
 source3/client/client.c |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/client/client.c b/source3/client/client.c
index b2cb911..05c4f91 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -4844,9 +4844,13 @@ static void readline_callback(void)
 		memset(garbage, 0xf0, sizeof(garbage));
 		status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
 
-		if (!NT_STATUS_IS_OK(status)) {
-			DEBUG(0, ("SMBecho failed. Maybe server has closed "
-				"the connection\n"));
+		if (NT_STATUS_IS_OK(status)) {
+			return;
+		}
+
+		if (!cli_state_is_connected(cli)) {
+			DEBUG(0, ("SMBecho failed (%s). The connection is "
+				"disconnected now\n", nt_errstr(status)));
 			finished = true;
 			smb_readline_done();
 		}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list