diff options
Diffstat (limited to 'bin/setfacl')
-rw-r--r-- | bin/setfacl/Makefile | 2 | ||||
-rw-r--r-- | bin/setfacl/Makefile.depend | 2 | ||||
-rw-r--r-- | bin/setfacl/file.c | 3 | ||||
-rw-r--r-- | bin/setfacl/mask.c | 3 | ||||
-rw-r--r-- | bin/setfacl/merge.c | 3 | ||||
-rw-r--r-- | bin/setfacl/remove.c | 3 | ||||
-rw-r--r-- | bin/setfacl/setfacl.1 | 6 | ||||
-rw-r--r-- | bin/setfacl/setfacl.c | 4 | ||||
-rw-r--r-- | bin/setfacl/setfacl.h | 2 | ||||
-rw-r--r-- | bin/setfacl/util.c | 2 |
10 files changed, 2 insertions, 28 deletions
diff --git a/bin/setfacl/Makefile b/bin/setfacl/Makefile index 378541398e5b..128077aa16a0 100644 --- a/bin/setfacl/Makefile +++ b/bin/setfacl/Makefile @@ -1,5 +1,3 @@ -# $FreeBSD$ - PACKAGE=runtime PROG= setfacl SRCS= file.c mask.c merge.c remove.c setfacl.c util.c diff --git a/bin/setfacl/Makefile.depend b/bin/setfacl/Makefile.depend index 6cfaab1c3644..6ef78fac5cbf 100644 --- a/bin/setfacl/Makefile.depend +++ b/bin/setfacl/Makefile.depend @@ -1,8 +1,6 @@ -# $FreeBSD$ # Autogenerated - do NOT edit! DIRDEPS = \ - gnu/lib/csu \ include \ include/xlocale \ lib/${CSU_DIR} \ diff --git a/bin/setfacl/file.c b/bin/setfacl/file.c index f7e9672c3ce8..24ef3869cf4c 100644 --- a/bin/setfacl/file.c +++ b/bin/setfacl/file.c @@ -24,9 +24,6 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <sys/acl.h> diff --git a/bin/setfacl/mask.c b/bin/setfacl/mask.c index 4dd85f039d0f..5154b17fb5bc 100644 --- a/bin/setfacl/mask.c +++ b/bin/setfacl/mask.c @@ -24,9 +24,6 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <sys/acl.h> #include <sys/stat.h> diff --git a/bin/setfacl/merge.c b/bin/setfacl/merge.c index 604e6fb693c2..d77a52ed2f25 100644 --- a/bin/setfacl/merge.c +++ b/bin/setfacl/merge.c @@ -24,9 +24,6 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <sys/acl.h> #include <sys/stat.h> diff --git a/bin/setfacl/remove.c b/bin/setfacl/remove.c index 9c86096da41d..5bfab9c2ec9d 100644 --- a/bin/setfacl/remove.c +++ b/bin/setfacl/remove.c @@ -24,9 +24,6 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/types.h> #include <sys/acl.h> #include <sys/stat.h> diff --git a/bin/setfacl/setfacl.1 b/bin/setfacl/setfacl.1 index 31040a61558c..b021f850913a 100644 --- a/bin/setfacl/setfacl.1 +++ b/bin/setfacl/setfacl.1 @@ -24,9 +24,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $FreeBSD$ -.\" -.Dd October 26, 2018 +.Dd April 29, 2023 .Dt SETFACL 1 .Os .Sh NAME @@ -331,7 +329,7 @@ In entries whose tag type is one of .Dq Li group@ , or .Dq Li everyone@ , -this field is omitted altogether, including the trailing comma. +this field is omitted altogether, including the trailing colon. .It Ar "access permissions" Access permissions may be specified in either short or long form. Short and long forms may not be mixed. diff --git a/bin/setfacl/setfacl.c b/bin/setfacl/setfacl.c index 033f9d2572ca..ef3f58b326a3 100644 --- a/bin/setfacl/setfacl.c +++ b/bin/setfacl/setfacl.c @@ -24,9 +24,6 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <sys/param.h> #include <sys/acl.h> #include <sys/queue.h> @@ -462,7 +459,6 @@ main(int argc, char *argv[]) break; default: usage(); - break; } argc -= optind; argv += optind; diff --git a/bin/setfacl/setfacl.h b/bin/setfacl/setfacl.h index 5ea794d44c74..b7e7cfd8ca1d 100644 --- a/bin/setfacl/setfacl.h +++ b/bin/setfacl/setfacl.h @@ -22,8 +22,6 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef _SETFACL_H diff --git a/bin/setfacl/util.c b/bin/setfacl/util.c index 8a78259c1ae7..ee28b9d5503e 100644 --- a/bin/setfacl/util.c +++ b/bin/setfacl/util.c @@ -25,8 +25,6 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #include <err.h> #include <stdlib.h> |