diff options
author | Volker Lendecke <vl@samba.org> | 2009-12-14 16:48:38 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-12-14 17:00:12 +0100 |
commit | 0d10efe1fdec2a621bd6580e3e120287c1682d07 (patch) | |
tree | 26385319052b3e6a6341900439ac001375af7508 /librpc/idl | |
parent | 9260396bbc9651ca44c6348c5fe1e6ccc464ab13 (diff) | |
download | samba-0d10efe1fdec2a621bd6580e3e120287c1682d07.tar.gz samba-0d10efe1fdec2a621bd6580e3e120287c1682d07.tar.bz2 samba-0d10efe1fdec2a621bd6580e3e120287c1682d07.zip |
s3: Allow up to 20480 entries in LookupSids, as mandated by the official IDL
Seen in the wild by putting >1000 users into BUILTIN\Users
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/lsa.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librpc/idl/lsa.idl b/librpc/idl/lsa.idl index a893786afa..baa5c93c2c 100644 --- a/librpc/idl/lsa.idl +++ b/librpc/idl/lsa.idl @@ -451,7 +451,7 @@ import "misc.idl", "security.idl"; } lsa_SidPtr; typedef [public] struct { - [range(0,1000)] uint32 num_sids; + [range(0,20480)] uint32 num_sids; [size_is(num_sids)] lsa_SidPtr *sids; } lsa_SidArray; @@ -564,7 +564,7 @@ import "misc.idl", "security.idl"; } lsa_TranslatedName; typedef struct { - [range(0,1000)] uint32 count; + [range(0,20480)] uint32 count; [size_is(count)] lsa_TranslatedName *names; } lsa_TransNameArray; |