1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-29 21:47:30 +03:00

r24067: Fix a type mismatch found by the IBM checker

(This used to be commit 411a1a2037886f934c6522ddef7a04d5c4a1fa69)
This commit is contained in:
Volker Lendecke 2007-07-28 18:52:28 +00:00 committed by Gerald (Jerry) Carter
parent 3ec8b1702c
commit 84058d4933

View 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))