]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
r24067: Fix a type mismatch found by the IBM checker
authorVolker Lendecke <vlendec@samba.org>
Sat, 28 Jul 2007 18:52:28 +0000 (18:52 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:29:01 +0000 (12:29 -0500)
(This used to be commit 411a1a2037886f934c6522ddef7a04d5c4a1fa69)

source3/rpc_parse/parse_sec.c

index d9c12bf3da0c00e7c01ef2f84396f50af77a02a5..378d1920a46d60a1403fa168b2709d1ddb69fabe 100644 (file)
@@ -262,7 +262,7 @@ BOOL sec_io_desc(const char *desc, SEC_DESC **ppsd, prs_struct *ps, int depth)
                return False;
 
        if (UNMARSHALLING(ps)) {
-               psd->revision = (enum security_acl_revision)revision;
+               psd->revision = (enum security_descriptor_revision)revision;
        }
 
        if(!prs_uint16("type     ", ps, depth, &psd->type))