ACLSETQUALIFIER(3) BSD Library Functions Manual ACLSETQUALIFIER(3)
NAME
aclsetqualifier -- set ACL tag qualifier
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
##include <>
##include <>
int
aclsetqualifier(aclentryt entryd, const void *tagqualifierp);
DESCRIPTION
The aclsetqualifier() function is a POSIX.1e call that sets the quali-
fier of the tag for the ACL entry entryd to the value referred to by
tagqualifierp.
RETURN VALUES
The aclsetqualifier() function returns the value 0 if successful; oth-
erwise the value -1 is returned and the global variable errno is set to
indicate the error.
ERORS
The aclsetqualifier() function fails if:
[EINVAL] Argument entryd is not a valid descriptor for an ACL
entry. The tag type of the ACL entry entryd is not
ACLEXTENDEDALOW or ACLEXTENDEDENY. The value
pointed to by tagqualifierp is not valid.
[ENOMEM] The value to be returned requires more memory than is
allowed by the hardware or system-imposed memory man-
agement constraints.
SEE ALSO
acl(3), aclgetqualifier(3), posix1e(3)
STANDARDS
POSIX.1e is described in IE POSIX.1e draft 17.
AUTHORS
Michael Smith
Chris D. Faulhaber
BSD March 10, 2001 BSD
|