diff options
author | Jeremy Allison <jra@samba.org> | 2009-07-24 14:13:42 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-07-24 14:13:42 -0700 |
commit | d373f0b77ca53e3c5282a9a643897dfb477ada21 (patch) | |
tree | 5531a4111351dd878148063dba88db08f554b4aa /librpc/idl | |
parent | 1bab4fdaafd5930a02ae5a0d603176720ef15220 (diff) | |
download | samba-d373f0b77ca53e3c5282a9a643897dfb477ada21.tar.gz samba-d373f0b77ca53e3c5282a9a643897dfb477ada21.tar.bz2 samba-d373f0b77ca53e3c5282a9a643897dfb477ada21.zip |
For some strange reason using :
uint8 hash[XATTR_SD_HASH_SIZE];
doesn't have the same effect as :
uint8 hash[64];
Jeremy.
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/xattr.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/idl/xattr.idl b/librpc/idl/xattr.idl index c2b8bb0cc2..4485caa48f 100644 --- a/librpc/idl/xattr.idl +++ b/librpc/idl/xattr.idl @@ -135,7 +135,7 @@ interface xattr typedef [public] struct { security_descriptor *sd; uint16 hash_type; - uint8 hash[XATTR_SD_HASH_SIZE]; /* 64 bytes hash. */ + uint8 hash[64]; /* 64 bytes hash. */ } security_descriptor_hash_v3; typedef [switch_type(uint16)] union { |