From: Derrell Lipman Date: Sun, 3 Sep 2006 02:28:22 +0000 (+0000) Subject: r18014: revert a possibly unnecessary change X-Git-Tag: samba-4.0.0alpha6~801^2~7735 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fc90da054e06ac4f9db673e237faed6ccc88207;p=thirdparty%2Fsamba.git r18014: revert a possibly unnecessary change (This used to be commit 9c93abf25e391348fe3864fca0079f231b89467c) --- diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c index 3a84a5bd4d1..24851961d03 100644 --- a/source3/libsmb/clientgen.c +++ b/source3/libsmb/clientgen.c @@ -79,6 +79,7 @@ static BOOL client_receive_smb(int fd,char *buffer, unsigned int timeout) BOOL cli_receive_smb(struct cli_state *cli) { + extern int smb_read_error; BOOL ret; /* fd == -1 causes segfaults -- Tom (tom@ninja.nl) */ @@ -108,7 +109,7 @@ BOOL cli_receive_smb(struct cli_state *cli) /* If the server is not responding, note that now */ if (!ret) { DEBUG(0, ("Receiving SMB: Server stopped responding\n")); - cli->smb_rw_error = READ_TIMEOUT; + cli->smb_rw_error = smb_read_error; close(cli->fd); cli->fd = -1; return ret;