From: Volker Lendecke Date: Sat, 28 Jul 2007 18:52:28 +0000 (+0000) Subject: r24067: Fix a type mismatch found by the IBM checker X-Git-Tag: samba-4.0.0alpha6~801^2~5235 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=84058d493355927cd884d1a8848a4497a473db2a;p=thirdparty%2Fsamba.git r24067: Fix a type mismatch found by the IBM checker (This used to be commit 411a1a2037886f934c6522ddef7a04d5c4a1fa69) --- diff --git a/source3/rpc_parse/parse_sec.c b/source3/rpc_parse/parse_sec.c index d9c12bf3da0..378d1920a46 100644 --- a/source3/rpc_parse/parse_sec.c +++ b/source3/rpc_parse/parse_sec.c @@ -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))