diff options
author | Jeremy Allison <jra@samba.org> | 2004-06-04 00:20:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:53 -0500 |
commit | a6f5c88563c2169ce125be4e84f6980714f7e1ff (patch) | |
tree | acf4ac07bfb5b8b56b5205c5a8d6fa125f73bf7a /source3/smbd | |
parent | b7ac82294f83b4b60d23b5ddf2ffe2caf5aef1a6 (diff) | |
download | samba-a6f5c88563c2169ce125be4e84f6980714f7e1ff.tar.gz samba-a6f5c88563c2169ce125be4e84f6980714f7e1ff.tar.bz2 samba-a6f5c88563c2169ce125be4e84f6980714f7e1ff.zip |
r998: Arrrgggh. Do it right this time :-(.
Jeremy.
(This used to be commit 7ac7cd41629779c877b62ebd54b965980f4dc7bf)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/process.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 72df91a21d..ccebd2b86c 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -74,7 +74,7 @@ static struct pending_message_list *smb_oplock_queue; for processing. ****************************************************************************/ -static BOOL push_message(struct pending_message_list **pplist_head, char *buf, int msg_len) +static BOOL push_message(char *buf, int msg_len) { struct pending_message_list *tmp_msg; struct pending_message_list *msg = (struct pending_message_list *) @@ -95,7 +95,7 @@ static BOOL push_message(struct pending_message_list **pplist_head, char *buf, i memcpy(msg->msg_buf, buf, msg_len); msg->msg_len = msg_len; - DLIST_ADD_END(*pplist_head, msg, tmp_msg); + DLIST_ADD_END(smb_oplock_queue, msg, tmp_msg); /* Push the MID of this packet on the signing queue. */ srv_defer_sign_response(SVAL(buf,smb_mid)); @@ -110,7 +110,7 @@ static BOOL push_message(struct pending_message_list **pplist_head, char *buf, i BOOL push_oplock_pending_smb_message(char *buf, int msg_len) { - return push_message(&smb_oplock_queue, buf, msg_len); + return push_message(buf, msg_len); } /**************************************************************************** |