diff options
author | Michael Adam <obnox@samba.org> | 2012-09-20 00:35:52 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-09-22 10:18:56 +0200 |
commit | 8e525a29a7c6512f61e4647ecb2e0771e2019a49 (patch) | |
tree | 7ef8553c3df5788291f70ada84fad19402a75d32 /source4/torture | |
parent | 75951946193c874b6db30c1b9c8722264c3ce656 (diff) | |
download | samba-8e525a29a7c6512f61e4647ecb2e0771e2019a49.tar.gz samba-8e525a29a7c6512f61e4647ecb2e0771e2019a49.tar.bz2 samba-8e525a29a7c6512f61e4647ecb2e0771e2019a49.zip |
s4:torture:smb2: fix compound.related3 test to work against windows
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/smb2/compound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/smb2/compound.c b/source4/torture/smb2/compound.c index 0eef3695bd..fa63f3f8d1 100644 --- a/source4/torture/smb2/compound.c +++ b/source4/torture/smb2/compound.c @@ -190,9 +190,9 @@ static bool test_compound_related2(struct torture_context *tctx, status = smb2_close_recv(req[2], &cl); CHECK_STATUS(status, NT_STATUS_FILE_CLOSED); status = smb2_close_recv(req[3], &cl); - CHECK_STATUS(status, NT_STATUS_INVALID_PARAMETER); + CHECK_STATUS(status, NT_STATUS_FILE_CLOSED); status = smb2_close_recv(req[4], &cl); - CHECK_STATUS(status, NT_STATUS_INVALID_PARAMETER); + CHECK_STATUS(status, NT_STATUS_FILE_CLOSED); TALLOC_FREE(tree->smbXcli); tree->smbXcli = saved_tcon; |