From bfcdbb750811389b1a6daf4c2fd36f4648abd3c6 Mon Sep 17 00:00:00 2001 From: rwatson Date: Wed, 19 Jan 2000 06:13:59 +0000 Subject: Fix bde'isms in acl/extattr syscall interface, renaming syscalls to prettier (?) names, adding some const's around here, et al. This is commit 4 out of 3, updating the userland library to reflect kernel interface changes. Reviewed by: bde --- lib/libposix1e/acl_support.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libposix1e/acl_support.c') diff --git a/lib/libposix1e/acl_support.c b/lib/libposix1e/acl_support.c index 22b1710..9f9ae26 100644 --- a/lib/libposix1e/acl_support.c +++ b/lib/libposix1e/acl_support.c @@ -429,7 +429,7 @@ acl_add_entry(acl_t acl, acl_tag_t tag, uid_t id, acl_perm_t perm) { struct acl_entry *e; - if (acl->acl_cnt >= MAX_ACL_ENTRIES) { + if (acl->acl_cnt >= ACL_MAX_ENTRIES) { errno = ENOMEM; return (-1); } -- cgit v1.1