diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-11-15 05:28:30 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:19 -0500 |
commit | 8dc40d68030396dd22844ff68b260645526e68f8 (patch) | |
tree | 9542e7e23493f60e8b8fcfe1710cc19c85df2b7e /source4/libcli | |
parent | b51703baf152c309ce325ce573c1683d7e503122 (diff) | |
download | samba-8dc40d68030396dd22844ff68b260645526e68f8.tar.gz samba-8dc40d68030396dd22844ff68b260645526e68f8.tar.xz samba-8dc40d68030396dd22844ff68b260645526e68f8.zip |
r11731: fixed typo noticed by metze
(This used to be commit e51fb2b44ad524620451807cccb186dd4be704c7)
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/smb2/getinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/smb2/getinfo.c b/source4/libcli/smb2/getinfo.c index 7a362b24d9..9599a6c48c 100644 --- a/source4/libcli/smb2/getinfo.c +++ b/source4/libcli/smb2/getinfo.c @@ -252,8 +252,8 @@ NTSTATUS smb2_getinfo_parse(TALLOC_CTX *mem_ctx, if (blob.length != 0x08) { return NT_STATUS_INFO_LENGTH_MISMATCH; } - io->standard_info.file_attr = IVAL(blob.data, 0x00); - io->standard_info.unknown = IVAL(blob.data, 0x04); + io->attrib_info.file_attr = IVAL(blob.data, 0x00); + io->attrib_info.unknown = IVAL(blob.data, 0x04); break; case SMB2_GETINFO_SECURITY: { |