summaryrefslogtreecommitdiffstats
path: root/source/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-08-24 19:56:20 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:38:49 -0500
commit3a1cf623765cd8b6615ad317d25cebc379c762a2 (patch)
treea637d2c7d718d0b9039ba0545c6772983d5654e3 /source/lib
parent6a4f4ce016dc47ff4b433208266c4616be7e2770 (diff)
downloadsamba-3a1cf623765cd8b6615ad317d25cebc379c762a2.tar.gz
samba-3a1cf623765cd8b6615ad317d25cebc379c762a2.tar.xz
samba-3a1cf623765cd8b6615ad317d25cebc379c762a2.zip
r17804: Fix a enum/int mixup found by the IRIX compiler.
Volker
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/sysacls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/sysacls.c b/source/lib/sysacls.c
index eba5fc44b6c..00264bf0ce0 100644
--- a/source/lib/sysacls.c
+++ b/source/lib/sysacls.c
@@ -273,7 +273,7 @@ int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p)
}
entry_d = &acl_d->acl[acl_d->count++];
- entry_d->a_type = 0;
+ entry_d->a_type = SMB_ACL_TAG_INVALID;
entry_d->uid = -1;
entry_d->gid = -1;
entry_d->a_perm = 0;