diff options
author | Ralph Boehme <slow@samba.org> | 2017-06-02 13:06:31 +0200 |
---|---|---|
committer | Ralph Boehme <slow@samba.org> | 2017-07-03 19:59:07 +0200 |
commit | e3cb6a936df1b52107081dfa817e18d55e473abf (patch) | |
tree | 35065fdd0684bae822ce0e2d56b41aa3ddcbc068 /librpc | |
parent | ebee4589fbabe0ed6f8b1662481558ff784e0e92 (diff) | |
download | samba-e3cb6a936df1b52107081dfa817e18d55e473abf.tar.gz |
librpc/idl: fix STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA definition
STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA is defined as 0xffff0001 in MS-FSCC
2.3.79.
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/ioctl.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/ioctl.idl b/librpc/idl/ioctl.idl index 17dfdf802a0..e8918343929 100644 --- a/librpc/idl/ioctl.idl +++ b/librpc/idl/ioctl.idl @@ -49,8 +49,8 @@ interface copychunk uint8 reserved[2]; } device_copy_offload_descriptor; - /* XXX: 0x00000001 is unconfirmed */ - const uint32 STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA = 0x00000001; + const uint32 STORAGE_OFFLOAD_TOKEN_TYPE_ZERO_DATA = 0xffff0001; + typedef [public] struct { uint32 token_type; uint8 reserved[2]; |