From d373f0b77ca53e3c5282a9a643897dfb477ada21 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 24 Jul 2009 14:13:42 -0700 Subject: For some strange reason using : uint8 hash[XATTR_SD_HASH_SIZE]; doesn't have the same effect as : uint8 hash[64]; Jeremy. --- librpc/idl/xattr.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'librpc/idl') 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 { -- cgit