diff options
author | Ken Smith <kensmith@FreeBSD.org> | 2008-11-26 01:09:48 +0000 |
---|---|---|
committer | Ken Smith <kensmith@FreeBSD.org> | 2008-11-26 01:09:48 +0000 |
commit | a93332491e10c1a23a9fd2f11ccbdba33d72d850 (patch) | |
tree | 1467effda708ab3ab6426f7cb6bd2d8d4fa29ab8 /bin/setfacl | |
parent | d2d8199ea25041ce5507c36316475bb4331b66ed (diff) |
Diffstat (limited to 'bin/setfacl')
-rw-r--r-- | bin/setfacl/Makefile | 2 | ||||
-rw-r--r-- | bin/setfacl/file.c | 2 | ||||
-rw-r--r-- | bin/setfacl/mask.c | 2 | ||||
-rw-r--r-- | bin/setfacl/merge.c | 2 | ||||
-rw-r--r-- | bin/setfacl/remove.c | 2 | ||||
-rw-r--r-- | bin/setfacl/setfacl.1 | 2 | ||||
-rw-r--r-- | bin/setfacl/setfacl.c | 2 | ||||
-rw-r--r-- | bin/setfacl/setfacl.h | 2 | ||||
-rw-r--r-- | bin/setfacl/util.c | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/bin/setfacl/Makefile b/bin/setfacl/Makefile index 3f6b78e54e111..92c209d7dcec1 100644 --- a/bin/setfacl/Makefile +++ b/bin/setfacl/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD: src/bin/setfacl/Makefile,v 1.8.24.1 2008/10/02 02:57:24 kensmith Exp $ PROG= setfacl SRCS= file.c mask.c merge.c remove.c setfacl.c util.c diff --git a/bin/setfacl/file.c b/bin/setfacl/file.c index 5996d55daf600..3995a03c3a3e2 100644 --- a/bin/setfacl/file.c +++ b/bin/setfacl/file.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/bin/setfacl/file.c,v 1.5.16.1 2008/10/02 02:57:24 kensmith Exp $"); #include <sys/types.h> #include <sys/acl.h> diff --git a/bin/setfacl/mask.c b/bin/setfacl/mask.c index b275893b1f549..da4956f6a1ee5 100644 --- a/bin/setfacl/mask.c +++ b/bin/setfacl/mask.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/bin/setfacl/mask.c,v 1.8.16.1 2008/10/02 02:57:24 kensmith Exp $"); #include <sys/types.h> #include <sys/acl.h> diff --git a/bin/setfacl/merge.c b/bin/setfacl/merge.c index 9f1b5dd48f457..ba982b80fc274 100644 --- a/bin/setfacl/merge.c +++ b/bin/setfacl/merge.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/bin/setfacl/merge.c,v 1.8.16.1 2008/10/02 02:57:24 kensmith Exp $"); #include <sys/types.h> #include <sys/acl.h> diff --git a/bin/setfacl/remove.c b/bin/setfacl/remove.c index 23240554a341b..8de2fde13963d 100644 --- a/bin/setfacl/remove.c +++ b/bin/setfacl/remove.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/bin/setfacl/remove.c,v 1.6.16.1 2008/10/02 02:57:24 kensmith Exp $"); #include <sys/types.h> #include <sys/acl.h> diff --git a/bin/setfacl/setfacl.1 b/bin/setfacl/setfacl.1 index 223267dad8cd6..d51e0e138ec4e 100644 --- a/bin/setfacl/setfacl.1 +++ b/bin/setfacl/setfacl.1 @@ -23,7 +23,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $FreeBSD: src/bin/setfacl/setfacl.1,v 1.13.2.1.6.1 2008/10/02 02:57:24 kensmith Exp $ .\" .Dd January 7, 2001 .Dt SETFACL 1 diff --git a/bin/setfacl/setfacl.c b/bin/setfacl/setfacl.c index 43a55459e0b9b..6eb0d03badaa0 100644 --- a/bin/setfacl/setfacl.c +++ b/bin/setfacl/setfacl.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/bin/setfacl/setfacl.c,v 1.11.2.1.6.1 2008/10/02 02:57:24 kensmith Exp $"); #include <sys/types.h> #include <sys/param.h> diff --git a/bin/setfacl/setfacl.h b/bin/setfacl/setfacl.h index bdf052ba0a810..872292a533c67 100644 --- a/bin/setfacl/setfacl.h +++ b/bin/setfacl/setfacl.h @@ -23,7 +23,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $FreeBSD: src/bin/setfacl/setfacl.h,v 1.5.16.1 2008/10/02 02:57:24 kensmith Exp $ */ #ifndef _SETFACL_H diff --git a/bin/setfacl/util.c b/bin/setfacl/util.c index 46b9abb6ff6b4..e91872145ddd9 100644 --- a/bin/setfacl/util.c +++ b/bin/setfacl/util.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/bin/setfacl/util.c,v 1.6.16.1 2008/10/02 02:57:24 kensmith Exp $"); #include <err.h> #include <stdlib.h> |