summaryrefslogtreecommitdiffstats
path: root/lib/libc/posix1e/acl_calc_mask.c
diff options
context:
space:
mode:
authorjedgar <jedgar@FreeBSD.org>2002-02-17 20:05:20 +0000
committerjedgar <jedgar@FreeBSD.org>2002-02-17 20:05:20 +0000
commit64ebd6e401d3a3d61fd6d720e9cf2afe1c1fe916 (patch)
treee59b3f19ad17c44595cc8aaff83f81eac0a5b407 /lib/libc/posix1e/acl_calc_mask.c
parent416a72d401bfdb757b0d33140ad1ac0b7c665e1f (diff)
downloadFreeBSD-src-64ebd6e401d3a3d61fd6d720e9cf2afe1c1fe916.zip
FreeBSD-src-64ebd6e401d3a3d61fd6d720e9cf2afe1c1fe916.tar.gz
o style and consistency fixes:
- if (!var) -> if (var == NULL) - return val; -> return (val); o update copyright
Diffstat (limited to 'lib/libc/posix1e/acl_calc_mask.c')
-rw-r--r--lib/libc/posix1e/acl_calc_mask.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/libc/posix1e/acl_calc_mask.c b/lib/libc/posix1e/acl_calc_mask.c
index 90fe224..3a425cc 100644
--- a/lib/libc/posix1e/acl_calc_mask.c
+++ b/lib/libc/posix1e/acl_calc_mask.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2001 Chris D. Faulhaber
+ * Copyright (c) 2001-2002 Chris D. Faulhaber
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -54,19 +54,19 @@ acl_calc_mask(acl_t *acl_p)
* perform sanity checks here and validate the ACL prior to
* returning.
*/
- if (!acl_p || !*acl_p) {
+ if (acl_p == NULL || *acl_p == NULL) {
errno = EINVAL;
- return -1;
+ return (-1);
}
acl_int = &(*acl_p)->ats_acl;
if ((acl_int->acl_cnt < 3) || (acl_int->acl_cnt > ACL_MAX_ENTRIES)) {
errno = EINVAL;
- return -1;
+ return (-1);
}
acl_new = acl_dup(*acl_p);
- if (!acl_new)
- return -1;
+ if (acl_new == NULL)
+ return (-1);
acl_int_new = &acl_new->ats_acl;
mask_mode = 0;
@@ -94,7 +94,7 @@ acl_calc_mask(acl_t *acl_p)
/* if no mask exists, check acl_cnt... */
if (acl_int_new->acl_cnt == ACL_MAX_ENTRIES) {
errno = ENOMEM;
- return -1;
+ return (-1);
}
/* ...and add the mask entry */
acl_int_new->acl_entry[acl_int_new->acl_cnt].ae_tag = ACL_MASK;
@@ -108,11 +108,11 @@ acl_calc_mask(acl_t *acl_p)
if (acl_valid(acl_new) == -1) {
errno = EINVAL;
acl_free(acl_new);
- return -1;
+ return (-1);
}
**acl_p = *acl_new;
acl_free(acl_new);
- return 0;
+ return (0);
}
OpenPOWER on IntegriCloud