diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-11-11 21:22:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:13 -0500 |
commit | 222e197b848e2f1e58602d1e709f057a1f8833fd (patch) | |
tree | bec800acb2a9710aab6ea59a41b5cf6491fcf0a6 /source4/torture | |
parent | be77dac05f22b93345aa7b6f8ba42615d74b19a4 (diff) | |
download | samba-222e197b848e2f1e58602d1e709f057a1f8833fd.tar.gz samba-222e197b848e2f1e58602d1e709f057a1f8833fd.tar.bz2 samba-222e197b848e2f1e58602d1e709f057a1f8833fd.zip |
r11687: filled in 3 more fields in the close reply
(This used to be commit 3a0abb3ff0b532179780ed95f8fcb4bca6e040b1)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/smb2/connect.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/torture/smb2/connect.c b/source4/torture/smb2/connect.c index 53236d3b27..68eb922b55 100644 --- a/source4/torture/smb2/connect.c +++ b/source4/torture/smb2/connect.c @@ -218,6 +218,9 @@ static NTSTATUS torture_smb2_close(struct smb2_tree *tree, struct smb2_handle ha printf("access_time = %s\n", nt_time_string(tmp_ctx, io.out.access_time)); printf("write_time = %s\n", nt_time_string(tmp_ctx, io.out.write_time)); printf("change_time = %s\n", nt_time_string(tmp_ctx, io.out.change_time)); + printf("alloc_size = %lld\n", io.out.alloc_size); + printf("size = %lld\n", io.out.size); + printf("file_attr = 0x%x\n", io.out.file_attr); talloc_free(tmp_ctx); |