]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Fix IDL for lsa_AddAccountRights.
authorGünther Deschner <gd@samba.org>
Thu, 14 Feb 2008 13:22:25 +0000 (14:22 +0100)
committerGünther Deschner <gd@samba.org>
Thu, 14 Feb 2008 13:40:26 +0000 (14:40 +0100)
Guenther

source/librpc/idl/lsa.idl

index 6bb34a9dc5c66539dae72a55aa16ccd1ba5f6811..df948bc68ece48713027f6a4382bc757a4b2da82 100644 (file)
@@ -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
                );
        
        /**********************/