diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-09-23 08:05:41 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2013-09-24 00:11:15 +0200 |
commit | 51d8eba8417c58c2ade30d58a838441008209542 (patch) | |
tree | 258ce636bf456e3ec85d0eb77f867d007fbf7c1d /librpc | |
parent | c18c6c9fb53a84e587f5ed951e47a1bb5f53a30e (diff) | |
download | samba-51d8eba8417c58c2ade30d58a838441008209542.tar.gz samba-51d8eba8417c58c2ade30d58a838441008209542.tar.bz2 samba-51d8eba8417c58c2ade30d58a838441008209542.zip |
drsuapi.idl: change the range for attribute values to 26214400 bytes.
This matches the IDL from [MS-DRSR].
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Matthieu Patou <mat@matws.net>
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/drsuapi.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl index ed85205052..063d13574a 100644 --- a/librpc/idl/drsuapi.idl +++ b/librpc/idl/drsuapi.idl @@ -546,7 +546,7 @@ interface drsuapi /* Generic DATA_BLOB values */ typedef struct { - [range(0,10485760),value(ndr_size_DATA_BLOB(0,blob,0))] uint32 __ndr_size; + [range(0,26214400),value(ndr_size_DATA_BLOB(0,blob,0))] uint32 __ndr_size; DATA_BLOB *blob; } drsuapi_DsAttributeValue; |