summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-07-28 18:52:28 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:29:01 -0500
commit84058d493355927cd884d1a8848a4497a473db2a (patch)
tree6dce0726a95985911f0879f1c3c64d4239015043 /source3
parent3ec8b1702cbda9d4f9dd276e2acef4057ee80a13 (diff)
downloadsamba-84058d493355927cd884d1a8848a4497a473db2a.tar.gz
samba-84058d493355927cd884d1a8848a4497a473db2a.tar.bz2
samba-84058d493355927cd884d1a8848a4497a473db2a.zip
r24067: Fix a type mismatch found by the IBM checker
(This used to be commit 411a1a2037886f934c6522ddef7a04d5c4a1fa69)
Diffstat (limited to 'source3')
-rw-r--r--source3/rpc_parse/parse_sec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_sec.c b/source3/rpc_parse/parse_sec.c
index d9c12bf3da..378d1920a4 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))