aboutsummaryrefslogtreecommitdiff
path: root/bin/setfacl/setfacl.c
Commit message (Collapse)AuthorAgeFilesLines
* -v no longer a valid argument to setfacl(1) -- remove from usage().Robert Watson2003-08-071-1/+1
| | | | | | | | PR: 55318 Submitted by: Grzegorz Czaplinski <G.Czaplinski@prioris.mini.pw.edu.pl> Notes: svn path=/head/; revision=118602
* When reporting an error internalizing an ACL string, print out theRobert Watson2003-07-181-2/+2
| | | | | | | | | | | ACL that generated the error, rather than the function, which is more user-friendly. Obtained from: TrustedBSD Project Product of: France Notes: svn path=/head/; revision=117734
* Add "-h" arguments to getfacl and setfacl, which behave in a mannerRobert Watson2002-12-301-5/+16
| | | | | | | | | | similar to "-h" on chown, chmod, etc, causing the operation to occur on a final symlink in the provided path, rather than its target. Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=108450
* Consistently use FBSDIDDavid E. O'Brien2002-06-301-2/+3
| | | | Notes: svn path=/head/; revision=99110
* Add defines for access and default ACLs (ACCESS_ACL/DEFAULT_ACL)Chris D. Faulhaber2001-12-031-9/+9
| | | | | | | | | to enhance readability. Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=87259
* style(9) cleanups mostly consisting of:Chris D. Faulhaber2001-12-031-20/+18
| | | | | | | | | | | | o explicitly check return values and variables against a value o return x; -> return (x); o fix inconsistent sysexits usage by nuking it (partially suggested by bde) Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=87254
* Silence WARNS=2 and BDECFLAGS on alpha and i386Kris Kennaway2001-05-201-1/+1
| | | | | | | MFC After: 1 week Notes: svn path=/head/; revision=76881
* o Separate acl_t into internal and external representations asChris D. Faulhaber2001-04-241-13/+13
| | | | | | | | | | | | | | required by POSIX.1e. This maintains the current 'struct acl' in the kernel while providing the generic external acl_t interface required to complete the ACL editing library. o Add the acl_get_entry() function. o Convert the existing ACL utilities, getfacl and setfacl, to fully make use of the ACL editing library. Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=75928
* o POSIX.2c Userland tool support for POSIX.1e ACLs -- getfacl retrieves ACLsRobert Watson2001-03-191-0/+254
from files and directories, and setfacl sets ACLs on files and directories. Submitted by: jedgar Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=74465