From 77f739f03a32965b676d97a6f082bb3e023014ef Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 12 Oct 2011 18:34:26 +0200 Subject: s4:torture/smb2: we only support 64KB reads/writes for now We don't have multi-credit support yet. metze --- source4/torture/smb2/read.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/torture/smb2/read.c') diff --git a/source4/torture/smb2/read.c b/source4/torture/smb2/read.c index 92b3ce0cf7..3600765c8e 100644 --- a/source4/torture/smb2/read.c +++ b/source4/torture/smb2/read.c @@ -51,7 +51,7 @@ static bool test_read_eof(struct torture_context *torture, struct smb2_tree *tre bool ret = true; NTSTATUS status; struct smb2_handle h; - uint8_t buf[70000]; + uint8_t buf[64*1024]; struct smb2_read rd; TALLOC_CTX *tmp_ctx = talloc_new(tree); @@ -143,7 +143,7 @@ static bool test_read_position(struct torture_context *torture, struct smb2_tree bool ret = true; NTSTATUS status; struct smb2_handle h; - uint8_t buf[70000]; + uint8_t buf[64*1024]; struct smb2_read rd; TALLOC_CTX *tmp_ctx = talloc_new(tree); union smb_fileinfo info; -- cgit