diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-06-20 07:03:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:09:13 -0500 |
commit | d3b3436ce1a71464b0f1a9ffa69643cd5c816004 (patch) | |
tree | 4cc3bf72b3a1ecfe11a02ba7c5ce8d59e2252d44 /source4/torture/smb2/scan.c | |
parent | 15db7a53e8273360fcaf6d8b7896d5f2b0d43c47 (diff) | |
download | samba-d3b3436ce1a71464b0f1a9ffa69643cd5c816004.tar.gz samba-d3b3436ce1a71464b0f1a9ffa69643cd5c816004.tar.xz samba-d3b3436ce1a71464b0f1a9ffa69643cd5c816004.zip |
r16406: use the generic smb_handle in smb2_getinfo/smb2_setinfo
metze
(This used to be commit dcc02df8297162a7fd913560194d9e821798dbe0)
Diffstat (limited to 'source4/torture/smb2/scan.c')
-rw-r--r-- | source4/torture/smb2/scan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/smb2/scan.c b/source4/torture/smb2/scan.c index a1eb2e80e03..6191499cacb 100644 --- a/source4/torture/smb2/scan.c +++ b/source4/torture/smb2/scan.c @@ -74,7 +74,7 @@ BOOL torture_smb2_getinfo_scan(struct torture_context *torture) for (i=0;i<0x100;i++) { io.in.level = (i<<8) | c; - io.in.handle = fhandle; + io.in.file.handle = fhandle; status = smb2_getinfo(tree, mem_ctx, &io); if (!NT_STATUS_EQUAL(status, NT_STATUS_INVALID_INFO_CLASS) && !NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER) && @@ -84,7 +84,7 @@ BOOL torture_smb2_getinfo_scan(struct torture_context *torture) dump_data(1, io.out.blob.data, io.out.blob.length); } - io.in.handle = dhandle; + io.in.file.handle = dhandle; status = smb2_getinfo(tree, mem_ctx, &io); if (!NT_STATUS_EQUAL(status, NT_STATUS_INVALID_INFO_CLASS) && !NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER) && @@ -132,7 +132,7 @@ BOOL torture_smb2_setinfo_scan(struct torture_context *torture) for (c=1;c<5;c++) { for (i=0;i<0x100;i++) { io.in.level = (i<<8) | c; - io.in.handle = handle; + io.in.file.handle = handle; status = smb2_setinfo(tree, &io); if (!NT_STATUS_EQUAL(status, NT_STATUS_INVALID_INFO_CLASS) && !NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) { |