Main index | Section 3 | Options |
#include <sys/types.h>
#include <sys/acl.h>
If the value of the tag type in the ACL entry referred to by entry_d is ACL_USER, then the value returned by acl_get_qualifier() will be a pointer to type uid_t.
If the value of the tag type in the ACL entry referred to by entry_d is ACL_GROUP, then the value returned by acl_get_qualifier() will be a pointer to type gid_t.
If the value of the tag type in the ACL entry referred to by entry_d is ACL_UNDEFINED_TAG, ACL_USER_OBJ, ACL_GROUP_OBJ, ACL_OTHER, ACL_MASK, or an implementation-defined value for which a qualifier is not supported, then acl_get_qualifier() will return a value of ( void *) NULL and the function will fail.
This function may cause memory to be allocated. The caller should free any releasable memory, when the new qualifier is no longer required, by calling acl_free() with void * as the argument.
[EINVAL] | |
Argument entry_d does not point to a valid descriptor for an ACL entry. The value of the tag type in the ACL entry referenced by argument entry_d is not ACL_USER or ACL_GROUP. | |
[ENOMEM] | |
The value to be returned requires more memory than is allowed by the hardware or system-imposed memory management constraints. | |
ACL_GET_QUALIFIER (3) | March 13, 2001 |
Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
“ | As soon as we started programming, we found to our surprise that it wasn't as easy to get programs right as we had thought. Debugging had to be discovered. I can remember the exact instant when I realized that a large part of my life from then on was going to be spent in finding mistakes in my own programs. | ” |
— Maurice Wilkes |