summaryrefslogtreecommitdiff
path: root/usr.bin/find
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-02-24 05:45:17 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-02-24 05:45:17 +0000
commita9c219fa3cec18ef9f30edec6fa106bf0e2d423d (patch)
tree50188ea5c781ddc35338e77f24e94f1aa22aae1c /usr.bin/find
parentba209d619d07461cc752dcdd596ab0d9b50e847a (diff)
Diffstat (limited to 'usr.bin/find')
-rw-r--r--usr.bin/find/Makefile2
-rw-r--r--usr.bin/find/extern.h2
-rw-r--r--usr.bin/find/find.12
-rw-r--r--usr.bin/find/find.c2
-rw-r--r--usr.bin/find/find.h2
-rw-r--r--usr.bin/find/function.c2
-rw-r--r--usr.bin/find/getdate.y2
-rw-r--r--usr.bin/find/ls.c2
-rw-r--r--usr.bin/find/main.c2
-rw-r--r--usr.bin/find/misc.c2
-rw-r--r--usr.bin/find/operator.c2
-rw-r--r--usr.bin/find/option.c2
12 files changed, 12 insertions, 12 deletions
diff --git a/usr.bin/find/Makefile b/usr.bin/find/Makefile
index b20dc0346f55..33038fe23f66 100644
--- a/usr.bin/find/Makefile
+++ b/usr.bin/find/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/find/Makefile,v 1.18 2005/01/25 14:07:25 ssouhlal Exp $
PROG= find
SRCS= find.c function.c ls.c main.c misc.c operator.c option.c \
diff --git a/usr.bin/find/extern.h b/usr.bin/find/extern.h
index a6f09f47db75..945b5575dc86 100644
--- a/usr.bin/find/extern.h
+++ b/usr.bin/find/extern.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)extern.h 8.3 (Berkeley) 4/16/94
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/find/extern.h,v 1.23 2006/05/14 20:23:00 krion Exp $
*/
#include <sys/cdefs.h>
diff --git a/usr.bin/find/find.1 b/usr.bin/find/find.1
index d8376d81d870..b38cabb2b569 100644
--- a/usr.bin/find/find.1
+++ b/usr.bin/find/find.1
@@ -33,7 +33,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)find.1 8.7 (Berkeley) 5/9/95
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.bin/find/find.1,v 1.82 2007/02/28 10:19:25 ru Exp $
.\"
.Dd December 13, 2006
.Dt FIND 1
diff --git a/usr.bin/find/find.c b/usr.bin/find/find.c
index cc2d797a541d..7f83ab1d71c2 100644
--- a/usr.bin/find/find.c
+++ b/usr.bin/find/find.c
@@ -42,7 +42,7 @@ static char sccsid[] = "@(#)find.c 8.5 (Berkeley) 8/5/94";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/find/find.c,v 1.18 2006/05/14 20:23:00 krion Exp $");
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/usr.bin/find/find.h b/usr.bin/find/find.h
index c7366fa5246d..6a8bc437f129 100644
--- a/usr.bin/find/find.h
+++ b/usr.bin/find/find.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* @(#)find.h 8.1 (Berkeley) 6/6/93
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/find/find.h,v 1.19 2006/05/14 20:23:01 krion Exp $
*/
#include <regex.h>
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c
index 5de9db073d79..e9dce9a7cb18 100644
--- a/usr.bin/find/function.c
+++ b/usr.bin/find/function.c
@@ -41,7 +41,7 @@ static const char sccsid[] = "@(#)function.c 8.10 (Berkeley) 5/4/95";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/find/function.c,v 1.58 2006/05/27 18:27:41 krion Exp $");
#include <sys/param.h>
#include <sys/ucred.h>
diff --git a/usr.bin/find/getdate.y b/usr.bin/find/getdate.y
index de7750c88ff5..c68de33c79d5 100644
--- a/usr.bin/find/getdate.y
+++ b/usr.bin/find/getdate.y
@@ -13,7 +13,7 @@
/* SUPPRESS 288 on yyerrlab *//* Label unused */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/find/getdate.y,v 1.4 2005/08/25 13:44:02 roberto Exp $");
#include <stdio.h>
#include <ctype.h>
diff --git a/usr.bin/find/ls.c b/usr.bin/find/ls.c
index 88e45938cc6d..b5ca8ae56c07 100644
--- a/usr.bin/find/ls.c
+++ b/usr.bin/find/ls.c
@@ -38,7 +38,7 @@ static char sccsid[] = "@(#)ls.c 8.1 (Berkeley) 6/6/93";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/find/ls.c,v 1.17 2004/01/20 09:27:03 des Exp $");
#include <sys/param.h>
#include <sys/stat.h>
diff --git a/usr.bin/find/main.c b/usr.bin/find/main.c
index 643f1f8cbf3a..b1f22332658a 100644
--- a/usr.bin/find/main.c
+++ b/usr.bin/find/main.c
@@ -47,7 +47,7 @@ static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/find/main.c,v 1.15 2003/06/14 13:00:21 markm Exp $");
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/usr.bin/find/misc.c b/usr.bin/find/misc.c
index 15329064cf44..a8274130c29f 100644
--- a/usr.bin/find/misc.c
+++ b/usr.bin/find/misc.c
@@ -42,7 +42,7 @@ static char sccsid[] = "@(#)misc.c 8.2 (Berkeley) 4/1/94";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/find/misc.c,v 1.8 2005/04/02 07:44:12 tjr Exp $");
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/usr.bin/find/operator.c b/usr.bin/find/operator.c
index c774efa0dc89..f04d12adaffd 100644
--- a/usr.bin/find/operator.c
+++ b/usr.bin/find/operator.c
@@ -41,7 +41,7 @@ static char sccsid[] = "@(#)operator.c 8.1 (Berkeley) 6/6/93";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/find/operator.c,v 1.14 2003/06/14 13:00:21 markm Exp $");
#include <sys/types.h>
diff --git a/usr.bin/find/option.c b/usr.bin/find/option.c
index c1c59ea090a8..0028f348d8f6 100644
--- a/usr.bin/find/option.c
+++ b/usr.bin/find/option.c
@@ -41,7 +41,7 @@ static char sccsid[] = "@(#)option.c 8.2 (Berkeley) 4/16/94";
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/usr.bin/find/option.c,v 1.25 2006/04/05 23:06:11 ceri Exp $");
#include <sys/types.h>
#include <sys/stat.h>