diff options
author | Volker Lendecke <vl@samba.org> | 2008-01-26 15:36:00 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-02-02 11:03:23 +0100 |
commit | e8f1edb9cd0d2014c05cdb2aba4f4deef48efedf (patch) | |
tree | 5d18bfb24850def6a3a5ed39d65da371064dd21d /source3/smbd | |
parent | 9e5a5d49dee83335f6990c4ec5d3b11f1f69e2e7 (diff) | |
download | samba-e8f1edb9cd0d2014c05cdb2aba4f4deef48efedf.tar.gz samba-e8f1edb9cd0d2014c05cdb2aba4f4deef48efedf.tar.bz2 samba-e8f1edb9cd0d2014c05cdb2aba4f4deef48efedf.zip |
Remove smb_read_error global
YESS :-)
(This used to be commit 26771bdca0e6837db267f4db7907e489acd92fc6)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/process.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 3cb1331054..2a643864fa 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -22,8 +22,6 @@ extern int smb_echo_count; -static enum smb_read_errors smb_read_error = SMB_READ_OK; - /* * Size of data we can send to client. Set * by the client for all protocols above CORE. @@ -43,11 +41,6 @@ extern int max_send; /* Accessor function for smb_read_error for smbd functions. */ -static enum smb_read_errors *get_srv_read_error(void) -{ - return &smb_read_error; -} - /**************************************************************************** Send an smb to a fd. ****************************************************************************/ |