diff options
author | Jeremy Allison <jra@samba.org> | 2003-10-21 17:40:58 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-10-21 17:40:58 +0000 |
commit | 63f331564396e7a4f16dce95bb98d3b6c4b75351 (patch) | |
tree | ab4678a095ffc7e56ad2a5957281621b956cad3d /source/smbd/process.c | |
parent | 5a8dbccd66911642fabb6b8b38fff4477b76c3a1 (diff) | |
download | samba-63f331564396e7a4f16dce95bb98d3b6c4b75351.tar.gz samba-63f331564396e7a4f16dce95bb98d3b6c4b75351.tar.xz samba-63f331564396e7a4f16dce95bb98d3b6c4b75351.zip |
Fix signing miss-sequence noticed by Stefan Metzmacher <metze@metzemix.de>
Jeremy.
Diffstat (limited to 'source/smbd/process.c')
-rw-r--r-- | source/smbd/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/process.c b/source/smbd/process.c index 3c15cd18333..43ffb82bd74 100644 --- a/source/smbd/process.c +++ b/source/smbd/process.c @@ -97,7 +97,7 @@ static BOOL push_message(ubi_slList *list_head, char *buf, int msg_len) ubi_slAddTail( list_head, msg); /* Push the MID of this packet on the signing queue. */ - srv_defer_sign_response(SVAL(buf,smb_mid), True); + srv_defer_sign_response(SVAL(buf,smb_mid)); return True; } |