summaryrefslogtreecommitdiff
path: root/usr.bin/find
diff options
context:
space:
mode:
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/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
11 files changed, 11 insertions, 11 deletions
diff --git a/usr.bin/find/Makefile b/usr.bin/find/Makefile
index 4b46eeb191a9..6799c8fd4426 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.8.2.4 2001/05/06 09:53:22 phk Exp $
CFLAGS+=-Wall
PROG= find
diff --git a/usr.bin/find/extern.h b/usr.bin/find/extern.h
index f200786159db..d909f1e617dc 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.9.2.4 2001/05/06 09:53:22 phk Exp $
*/
#include <sys/cdefs.h>
diff --git a/usr.bin/find/find.1 b/usr.bin/find/find.1
index 02e965c387d2..c67d290146dd 100644
--- a/usr.bin/find/find.1
+++ b/usr.bin/find/find.1
@@ -32,7 +32,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)find.1 8.7 (Berkeley) 5/9/95
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.bin/find/find.1,v 1.23.2.18 2002/08/22 16:17:01 jmallett Exp $
.\"
.Dd May 3, 2001
.Dt FIND 1
diff --git a/usr.bin/find/find.c b/usr.bin/find/find.c
index b10715bdd622..6a14c92d7ea5 100644
--- a/usr.bin/find/find.c
+++ b/usr.bin/find/find.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)find.c 8.5 (Berkeley) 8/5/94";
#else
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/find/find.c,v 1.7.6.3 2001/05/06 09:53:22 phk Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/find/find.h b/usr.bin/find/find.h
index e3e531fa5afd..391676994bbf 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.6.2.6 2001/09/19 09:44:24 ru Exp $
*/
#include <regex.h>
diff --git a/usr.bin/find/function.c b/usr.bin/find/function.c
index cf4f4a2ee32e..cb0b45f3caa4 100644
--- a/usr.bin/find/function.c
+++ b/usr.bin/find/function.c
@@ -39,7 +39,7 @@
static const char sccsid[] = "@(#)function.c 8.10 (Berkeley) 5/4/95";
#else
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/find/function.c,v 1.22.2.10 2002/04/04 08:54:15 jmallett Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/find/ls.c b/usr.bin/find/ls.c
index e3d1cb09aa6c..9736a6205539 100644
--- a/usr.bin/find/ls.c
+++ b/usr.bin/find/ls.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)ls.c 8.1 (Berkeley) 6/6/93";
#else
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/find/ls.c,v 1.5.6.3 2002/03/12 19:34:50 phantom Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/find/main.c b/usr.bin/find/main.c
index ed5377c00fab..bad04a212ed6 100644
--- a/usr.bin/find/main.c
+++ b/usr.bin/find/main.c
@@ -45,7 +45,7 @@ char copyright[] =
static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
#else
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/find/main.c,v 1.9.6.2 2001/02/25 21:56:59 knu Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/find/misc.c b/usr.bin/find/misc.c
index 36045a3a5edd..2ad2ace83f8e 100644
--- a/usr.bin/find/misc.c
+++ b/usr.bin/find/misc.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)misc.c 8.2 (Berkeley) 4/1/94";
#else
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/find/misc.c,v 1.2.12.1 2000/06/23 18:38:46 roberto Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/find/operator.c b/usr.bin/find/operator.c
index ab3708f6123f..a8feb8e3322e 100644
--- a/usr.bin/find/operator.c
+++ b/usr.bin/find/operator.c
@@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/find/operator.c,v 1.5.6.1 2001/05/06 09:53:22 phk Exp $
*/
#ifndef lint
diff --git a/usr.bin/find/option.c b/usr.bin/find/option.c
index a31d310a62cc..9fbcc0c87af2 100644
--- a/usr.bin/find/option.c
+++ b/usr.bin/find/option.c
@@ -39,7 +39,7 @@
static char sccsid[] = "@(#)option.c 8.2 (Berkeley) 4/16/94";
*/
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/find/option.c,v 1.9.2.5 2002/08/22 16:17:02 jmallett Exp $";
#endif /* not lint */
#include <sys/types.h>