diff options
author | Jeremy Allison <jra@samba.org> | 2007-12-18 18:10:09 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-12-18 18:10:09 -0800 |
commit | a34c6cd0e7046c1127b05bf3b5d5819f1d500cbc (patch) | |
tree | cc4c605c1f1378357e3409d1a7a56c1c0f71113f /source3/smbd | |
parent | 75ca69243019ae1f422bd0e7c336e9f92a0d941c (diff) | |
download | samba-a34c6cd0e7046c1127b05bf3b5d5819f1d500cbc.tar.gz samba-a34c6cd0e7046c1127b05bf3b5d5819f1d500cbc.tar.bz2 samba-a34c6cd0e7046c1127b05bf3b5d5819f1d500cbc.zip |
Remove last_message completely as it's no longer used.
Jeremy.
(This used to be commit c378c3edc1197d46c5d6eb2bcabbf9e774c03ffc)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/process.c | 3 | ||||
-rw-r--r-- | source3/smbd/server.c | 6 |
2 files changed, 0 insertions, 9 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index ffc9e106f6..ee76f90bf5 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -38,7 +38,6 @@ int max_send = BUFFER_SIZE; */ int max_recv = BUFFER_SIZE; -extern int last_message; SIG_ATOMIC_T reload_after_sighup = 0; SIG_ATOMIC_T got_sig_term = 0; extern bool global_machine_password_needs_changing; @@ -1308,8 +1307,6 @@ static void switch_message(uint8 type, struct smb_request *req, int size) errno = 0; - last_message = type; - /* Make sure this is an SMB packet. smb_size contains NetBIOS header * so subtract 4 from it. */ if ((strncmp(smb_base(req->inbuf),"\377SMB",4) != 0) diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 574197d711..40037074f6 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -27,12 +27,6 @@ static_decl_rpc; static int am_parent = 1; -/* the last message the was processed */ -int last_message = -1; - -/* a useful macro to debug the last message processed */ -#define LAST_MESSAGE() smb_fn_name(last_message) - extern struct auth_context *negprot_global_auth_context; extern SIG_ATOMIC_T got_sig_term; extern SIG_ATOMIC_T reload_after_sighup; |