diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-10-03 18:13:50 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-10-03 18:17:24 +1000 |
commit | e66fa4645a6abcaef2497f4173baae5cbafed571 (patch) | |
tree | 509e39dab3973db7a17cb3e90dbec3e93a141a3f /librpc | |
parent | f21fb4b3958fe630400b145b729c966fa9c053a9 (diff) | |
download | samba-e66fa4645a6abcaef2497f4173baae5cbafed571.tar.gz samba-e66fa4645a6abcaef2497f4173baae5cbafed571.tar.xz samba-e66fa4645a6abcaef2497f4173baae5cbafed571.zip |
idl: some lsa vars are uint3264
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/lsa.idl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/librpc/idl/lsa.idl b/librpc/idl/lsa.idl index 253b6d780c8..58e0ea9e26c 100644 --- a/librpc/idl/lsa.idl +++ b/librpc/idl/lsa.idl @@ -113,14 +113,14 @@ import "misc.idl", "security.idl"; /******************/ /* Function: 0x06 */ typedef struct { - uint32 len; /* ignored */ + uint3264 len; /* ignored */ uint16 impersonation_level; uint8 context_mode; uint8 effective_only; } lsa_QosInfo; typedef struct { - uint32 len; /* ignored */ + uint3264 len; /* ignored */ uint8 *root_dir; [string,charset(UTF16)] uint16 *object_name; uint32 attributes; @@ -628,8 +628,8 @@ import "misc.idl", "security.idl"; ); typedef [flag(NDR_PAHEX)] struct { - uint32 length; - uint32 size; + uint3264 length; + uint3264 size; [size_is(size),length_is(length)] uint8 *data; } lsa_DATA_BUF; @@ -1220,7 +1220,7 @@ import "misc.idl", "security.idl"; /* Function 0x49 */ typedef struct { - [range(0,131072)] uint32 length; + [range(0,131072)] uint3264 length; [size_is(length)] uint8 *data; } lsa_ForestTrustBinaryData; |