diff options
author | Volker Lendecke <vl@samba.org> | 2007-12-20 22:27:01 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2007-12-21 09:58:21 +0100 |
commit | 99b86e4a266b99634f6a65015f6df115c421d3e5 (patch) | |
tree | 80d4826f844551ec2b3be8a84b896a8ed3acc203 /source3/smbd | |
parent | addf598cde41d17ad4cf497a64b9a2b27e4028c5 (diff) | |
download | samba-99b86e4a266b99634f6a65015f6df115c421d3e5.tar.gz samba-99b86e4a266b99634f6a65015f6df115c421d3e5.tar.bz2 samba-99b86e4a266b99634f6a65015f6df115c421d3e5.zip |
Some C++ fixes
(This used to be commit 5c392c4c6e277a24d0d477902dc7856b2b46ee53)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/posix_acls.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/posix_acls.c b/source3/smbd/posix_acls.c index d8794e2114..2810b5e587 100644 --- a/source3/smbd/posix_acls.c +++ b/source3/smbd/posix_acls.c @@ -891,7 +891,7 @@ static bool nt4_compatible_acls(void) ****************************************************************************/ static SEC_ACCESS map_canon_ace_perms(int snum, - int *pacl_type, + enum security_ace_type *pacl_type, mode_t perms, bool directory_ace) { @@ -2869,7 +2869,7 @@ static NTSTATUS posix_get_nt_acl_common(struct connection_struct *conn, { canon_ace *ace; - int nt_acl_type; + enum security_ace_type nt_acl_type; int i; if (nt4_compatible_acls() && dir_ace) { @@ -3210,7 +3210,7 @@ static NTSTATUS append_ugw_ace(files_struct *fsp, { mode_t perms; SEC_ACCESS acc; - int nt_acl_type; + enum security_ace_type nt_acl_type; DOM_SID trustee; switch (ugw) { |