summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2007-08-02 01:30:03 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 15:01:27 -0500
commitfc9471c4df4cbdda8917a6c06640214bfd956602 (patch)
treee6cea167f3d0327b3248678a5702c7735c81006f
parent3de02665fe46e5ca027b476a011298b38117fb5e (diff)
downloadsamba-fc9471c4df4cbdda8917a6c06640214bfd956602.tar.gz
samba-fc9471c4df4cbdda8917a6c06640214bfd956602.tar.bz2
samba-fc9471c4df4cbdda8917a6c06640214bfd956602.zip
r24118: Start fixing #4842 (usrmgr polcies menu not working) by removing range
restriction on the maximum returned size. There isn't a good reason to have a limit on this one. Andrew Bartlett (This used to be commit 9a8315019e20f736c6977451c1d1f1f3fcba16f2)
-rw-r--r--source4/librpc/idl/lsa.idl2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl
index a121e99004..b692139fc8 100644
--- a/source4/librpc/idl/lsa.idl
+++ b/source4/librpc/idl/lsa.idl
@@ -301,7 +301,7 @@ import "security.idl";
NTSTATUS lsa_EnumTrustDom (
[in] policy_handle *handle,
[in,out] uint32 *resume_handle,
- [in,range(0,1000)] uint32 max_size,
+ [in] uint32 max_size,
[out] lsa_DomainList *domains
);