acl_set.c (333fc21e3cd79bca0c94d7722c5a56cb5ad078d1) | acl_set.c (6394f703dcdf80f1fd010d508645732880f46d93) |
---|---|
1/*- | 1/*- |
2 * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson | 2 * Copyright (c) 1999, 2000, 2001, 2002 Robert N. M. Watson |
3 * All rights reserved. 4 * | 3 * All rights reserved. 4 * |
5 * This software was developed by Robert Watson for the TrustedBSD Project. 6 * |
|
5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. --- 52 unchanged lines hidden (view full) --- 65 } 66 67 acl->ats_cur_entry = 0; 68 69 return (__acl_set_file(path_p, type, &acl->ats_acl)); 70} 71 72int | 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. --- 52 unchanged lines hidden (view full) --- 67 } 68 69 acl->ats_cur_entry = 0; 70 71 return (__acl_set_file(path_p, type, &acl->ats_acl)); 72} 73 74int |
75acl_set_link_np(const char *path_p, acl_type_t type, acl_t acl) 76{ 77 int error; 78 79 if (acl == NULL || path_p == NULL) { 80 errno = EINVAL; 81 return (-1); 82 } 83 if (_posix1e_acl(acl, type)) { 84 error = _posix1e_acl_sort(acl); 85 if (error) { 86 errno = error; 87 return (-1); 88 } 89 } 90 91 acl->ats_cur_entry = 0; 92 93 return (__acl_set_link(path_p, type, &acl->ats_acl)); 94} 95 96int |
|
73acl_set_fd(int fd, acl_t acl) 74{ 75 int error; 76 77 error = _posix1e_acl_sort(acl); 78 if (error) { 79 errno = error; 80 return(-1); --- 95 unchanged lines hidden --- | 97acl_set_fd(int fd, acl_t acl) 98{ 99 int error; 100 101 error = _posix1e_acl_sort(acl); 102 if (error) { 103 errno = error; 104 return(-1); --- 95 unchanged lines hidden --- |