From 3329432d1f6e9dab31a970b2b407374c144d68ba Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 14 Feb 2008 14:22:25 +0100 Subject: Fix IDL for lsa_AddAccountRights. Guenther (This used to be commit 7319986a3e9a640ea2d605dc7a2104f43f74f8a2) --- source3/librpc/idl/lsa.idl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/librpc') diff --git a/source3/librpc/idl/lsa.idl b/source3/librpc/idl/lsa.idl index 6bb34a9dc5..df948bc68e 100644 --- a/source3/librpc/idl/lsa.idl +++ b/source3/librpc/idl/lsa.idl @@ -682,7 +682,7 @@ import "security.idl"; } lsa_RightAttribute; typedef struct { - uint32 count; + [range(0,256)] uint32 count; [size_is(count)] lsa_StringLarge *names; } lsa_RightSet; @@ -697,8 +697,8 @@ import "security.idl"; /* Function: 0x25 */ NTSTATUS lsa_AddAccountRights ( [in] policy_handle *handle, - [in] dom_sid2 *sid, - [in] lsa_RightSet *rights + [in,ref] dom_sid2 *sid, + [in,ref] lsa_RightSet *rights ); /**********************/ -- cgit