From 36441da4240f3e3a296eed65f0796b25b7b05a3a Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 5 Nov 2007 11:12:56 -0800 Subject: Remove the horror that was the global smb_rw_error. Each cli struct has it's own local copy of this variable, so use that in client code. In the smbd server, add one static to smbd/proccess.c and use that inside smbd. Fix a bunch of places where smb_rw_error could be set by calling read_data() in places where we weren't reading from the SMB client socket (ie. winbindd). Jeremy. (This used to be commit 255c2adf7b6ef30932b5bb9f142ccef4a5d3d0db) --- source3/include/client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include/client.h') diff --git a/source3/include/client.h b/source3/include/client.h index d8c35780a4..dd8bb0dba9 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -82,7 +82,7 @@ struct rpc_pipe_client { struct cli_state { int port; int fd; - /* Copy of last read or write error. */ + /* Last read or write error. */ enum smb_read_errors smb_rw_error; uint16 cnum; uint16 pid; -- cgit