diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2008-02-24 05:45:17 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2008-02-24 05:45:17 +0000 |
| commit | a9c219fa3cec18ef9f30edec6fa106bf0e2d423d (patch) | |
| tree | 50188ea5c781ddc35338e77f24e94f1aa22aae1c /usr.bin/sed | |
| parent | ba209d619d07461cc752dcdd596ab0d9b50e847a (diff) | |
This commit was manufactured by cvs2svn to create tagrelease/7.0.0_cvs
'RELENG_7_0_0_RELEASE'.
This commit was manufactured to restore the state of the 7.0-RELEASE image.
Diffstat (limited to 'usr.bin/sed')
| -rw-r--r-- | usr.bin/sed/Makefile | 2 | ||||
| -rw-r--r-- | usr.bin/sed/POSIX | 2 | ||||
| -rw-r--r-- | usr.bin/sed/compile.c | 2 | ||||
| -rw-r--r-- | usr.bin/sed/defs.h | 2 | ||||
| -rw-r--r-- | usr.bin/sed/extern.h | 2 | ||||
| -rw-r--r-- | usr.bin/sed/main.c | 2 | ||||
| -rw-r--r-- | usr.bin/sed/misc.c | 2 | ||||
| -rw-r--r-- | usr.bin/sed/process.c | 2 | ||||
| -rw-r--r-- | usr.bin/sed/sed.1 | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/usr.bin/sed/Makefile b/usr.bin/sed/Makefile index 9d9886f3688c..a411bd79f0e5 100644 --- a/usr.bin/sed/Makefile +++ b/usr.bin/sed/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -# $FreeBSD$ +# $FreeBSD: src/usr.bin/sed/Makefile,v 1.5 2002/06/17 08:21:53 sobomax Exp $ PROG= sed SRCS= compile.c main.c misc.c process.c diff --git a/usr.bin/sed/POSIX b/usr.bin/sed/POSIX index 239acf8e48d1..bd600a66a4fb 100644 --- a/usr.bin/sed/POSIX +++ b/usr.bin/sed/POSIX @@ -1,5 +1,5 @@ # @(#)POSIX 8.1 (Berkeley) 6/6/93 -# $FreeBSD$ +# $FreeBSD: src/usr.bin/sed/POSIX,v 1.4 2007/04/06 08:43:30 yar Exp $ Comments on the IEEE P1003.2 Draft 12 Part 2: Shell and Utilities diff --git a/usr.bin/sed/compile.c b/usr.bin/sed/compile.c index 635e058eac67..e420c930a71b 100644 --- a/usr.bin/sed/compile.c +++ b/usr.bin/sed/compile.c @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/compile.c,v 1.30 2007/07/06 16:34:56 delphij Exp $"); #ifndef lint static const char sccsid[] = "@(#)compile.c 8.1 (Berkeley) 6/6/93"; diff --git a/usr.bin/sed/defs.h b/usr.bin/sed/defs.h index cbc0790afa10..b313f54e7f4a 100644 --- a/usr.bin/sed/defs.h +++ b/usr.bin/sed/defs.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)defs.h 8.1 (Berkeley) 6/6/93 - * $FreeBSD$ + * $FreeBSD: src/usr.bin/sed/defs.h,v 1.6 2007/07/04 16:42:41 ssouhlal Exp $ */ /* diff --git a/usr.bin/sed/extern.h b/usr.bin/sed/extern.h index f2bd71bacfa4..488468f582d5 100644 --- a/usr.bin/sed/extern.h +++ b/usr.bin/sed/extern.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)extern.h 8.1 (Berkeley) 6/6/93 - * $FreeBSD$ + * $FreeBSD: src/usr.bin/sed/extern.h,v 1.15 2007/06/12 12:05:23 yar Exp $ */ extern struct s_command *prog; diff --git a/usr.bin/sed/main.c b/usr.bin/sed/main.c index e17741f6257d..17594ea5cafe 100644 --- a/usr.bin/sed/main.c +++ b/usr.bin/sed/main.c @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/main.c,v 1.39 2007/06/12 12:05:23 yar Exp $"); #ifndef lint static const char copyright[] = diff --git a/usr.bin/sed/misc.c b/usr.bin/sed/misc.c index f3b513784a6e..2a3789221df3 100644 --- a/usr.bin/sed/misc.c +++ b/usr.bin/sed/misc.c @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/misc.c,v 1.10 2004/08/09 15:29:41 dds Exp $"); #ifndef lint static const char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 6/6/93"; diff --git a/usr.bin/sed/process.c b/usr.bin/sed/process.c index fb3f9004f9e0..a0ba85516edc 100644 --- a/usr.bin/sed/process.c +++ b/usr.bin/sed/process.c @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/usr.bin/sed/process.c,v 1.48 2007/06/12 12:17:25 yar Exp $"); #ifndef lint static const char sccsid[] = "@(#)process.c 8.6 (Berkeley) 4/20/94"; diff --git a/usr.bin/sed/sed.1 b/usr.bin/sed/sed.1 index 71f3a9d688b1..615e79796ddb 100644 --- a/usr.bin/sed/sed.1 +++ b/usr.bin/sed/sed.1 @@ -29,7 +29,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)sed.1 8.2 (Berkeley) 12/30/93 -.\" $FreeBSD$ +.\" $FreeBSD: src/usr.bin/sed/sed.1,v 1.46 2007/07/04 16:42:41 ssouhlal Exp $ .\" .Dd April 21, 2007 .Dt SED 1 |
