diff options
author | Volker Lendecke <vl@samba.org> | 2013-04-19 12:36:08 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2013-04-19 13:16:38 +0200 |
commit | 5aa9e552ec70ffbd48495e0d7c28517e726487bf (patch) | |
tree | d2a00ad7de228f77ce729d7a509bf83931432edf /source3/smbd | |
parent | 77f7a46e180596fa081f4069edea9efd23e3f0c5 (diff) | |
download | samba-5aa9e552ec70ffbd48495e0d7c28517e726487bf.tar.gz samba-5aa9e552ec70ffbd48495e0d7c28517e726487bf.tar.bz2 samba-5aa9e552ec70ffbd48495e0d7c28517e726487bf.zip |
smbd: Fix signing when the async echo handler kicks in
This was introduced as a copy&paste error in 5e0258fc932c
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Christian Ambach <ambi@samba.org>
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 1ebda799c9..478f1db21d 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -2412,7 +2412,7 @@ static void smbd_server_connection_read_handler( &unread_bytes, &encrypted, &inbuf_len, &seqnum, - false /* trusted channel */); + !from_client /* trusted channel */); if (from_client) { smbd_unlock_socket(sconn); |