summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-03-26 18:33:38 +0100
committerVolker Lendecke <vl@samba.org>2008-03-28 13:44:30 +0100
commitafa682943c1799f02b6a86f8f872fd2ce2d62da5 (patch)
tree3bba0b25bfd3046c6b99f447c1dbdda94628b486 /source3/smbd
parent7f1a0a5cdf29073326457558cd474b46c670107e (diff)
downloadsamba-afa682943c1799f02b6a86f8f872fd2ce2d62da5.tar.gz
samba-afa682943c1799f02b6a86f8f872fd2ce2d62da5.tar.bz2
samba-afa682943c1799f02b6a86f8f872fd2ce2d62da5.zip
printclose has only 1 vwv
(This used to be commit 99d980125054cbfef8ec85a31e83aa18a6e0bce3)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/reply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index 91d5f25a27..bababfecac 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -4622,7 +4622,7 @@ void reply_printclose(struct smb_request *req)
START_PROFILE(SMBsplclose);
- if (req->wct < 3) {
+ if (req->wct < 1) {
reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
END_PROFILE(SMBsplclose);
return;