From: Günther Deschner Date: Thu, 14 Feb 2008 13:22:25 +0000 (+0100) Subject: Fix IDL for lsa_AddAccountRights. X-Git-Tag: samba-3.2.0pre2~37^2~187 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7319986a3e9a640ea2d605dc7a2104f43f74f8a2;p=thirdparty%2Fsamba.git Fix IDL for lsa_AddAccountRights. Guenther --- diff --git a/source/librpc/idl/lsa.idl b/source/librpc/idl/lsa.idl index 6bb34a9dc5c..df948bc68ec 100644 --- a/source/librpc/idl/lsa.idl +++ b/source/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 ); /**********************/