From ec387a1267f4cac7625cd5b6d1c1f080d39085b3 Mon Sep 17 00:00:00 2001 From: Stelian Pop Date: Mon, 11 Oct 1999 13:31:03 +0000 Subject: [PATCH] Added CVS Id. --- CHANGES | 7 +++++++ COPYRIGHT | 1 + INSTALL | 1 + KNOWNBUGS | 2 ++ MAINTAINERS | 2 ++ MCONFIG.in | 2 ++ Makefile.in | 1 + README | 1 + THANKS | 2 ++ TODO | 2 ++ acconfig.h | 2 ++ common/Makefile.in | 2 ++ common/dumprmt.c | 3 ++- compat/include/Makefile.in | 2 ++ compat/include/bsdcompat.h | 1 + compat/include/compaterr.h | 3 +-- compat/include/compatglob.h | 2 +- compat/include/fstab.h | 2 +- compat/include/pathnames.h.in | 2 +- compat/include/protocols/dumprestore.h | 2 +- compat/lib/Makefile.in | 2 ++ compat/lib/compaterr.c | 8 ++------ compat/lib/compatglob.c | 6 ++---- compat/lib/fstab.c | 6 ++---- configure.in | 2 ++ depfix.sed | 1 + dump/Makefile.in | 2 ++ dump/dump.8.in | 3 +-- dump/dump.h | 2 +- dump/itime.c | 10 ++-------- dump/main.c | 16 ++-------------- dump/optr.c | 10 ++-------- dump/tape.c | 10 ++-------- dump/traverse.c | 10 ++-------- dump/unctime.c | 10 ++-------- restore/Makefile.in | 2 ++ restore/dirs.c | 10 ++-------- restore/extern.h | 3 +-- restore/interactive.c | 10 ++-------- restore/main.c | 16 ++-------------- restore/restore.8.in | 3 +-- restore/restore.c | 10 ++-------- restore/restore.h | 2 +- restore/symtab.c | 10 ++-------- restore/tape.c | 10 ++-------- restore/utilities.c | 10 ++-------- rmt/Makefile.in | 2 ++ rmt/rmt.8.in | 2 +- rmt/rmt.c | 16 ++-------------- 49 files changed, 86 insertions(+), 160 deletions(-) diff --git a/CHANGES b/CHANGES index 5695986..71fdc67 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,10 @@ +$Id: CHANGES,v 1.5 1999/10/11 13:31:03 stelian Exp $ + +Changes between versions 0.4b7 and 0.4b8 (released ???????????????) +=================================================================== + +1. Put dump sources under CVS, added Id tags in all files. + Changes between versions 0.4b6 and 0.4b7 (released October 8, 1999) =================================================================== diff --git a/COPYRIGHT b/COPYRIGHT index c46bebd..cd9b353 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -4,6 +4,7 @@ * Remy Card , 1994-1997 * Stelian Pop , 1999 * + * $Id: COPYRIGHT,v 1.3 1999/10/11 13:31:03 stelian Exp $ */ /*- diff --git a/INSTALL b/INSTALL index c8caa1f..842a017 100644 --- a/INSTALL +++ b/INSTALL @@ -1,3 +1,4 @@ +$Id: INSTALL,v 1.2 1999/10/11 13:31:03 stelian Exp $ Installation of the dump/restore port should be quite easy, since a configure script is now provided. diff --git a/KNOWNBUGS b/KNOWNBUGS index 4776dca..6b06386 100644 --- a/KNOWNBUGS +++ b/KNOWNBUGS @@ -1,3 +1,5 @@ +$Id: KNOWNBUGS,v 1.3 1999/10/11 13:31:03 stelian Exp $ + Known bugs and limitations of the dump/restore port =================================================== diff --git a/MAINTAINERS b/MAINTAINERS index f8428a6..1c073d8 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1,3 +1,5 @@ +$Id: MAINTAINERS,v 1.2 1999/10/11 13:31:03 stelian Exp $ + The dump and restore backup suit was ported to Linux's Second Extended File System by Rémy Card diff --git a/MCONFIG.in b/MCONFIG.in index 4c73eda..308441d 100644 --- a/MCONFIG.in +++ b/MCONFIG.in @@ -1,3 +1,5 @@ +# $Id: MCONFIG.in,v 1.4 1999/10/11 13:31:03 stelian Exp $ + VPATH= $(srcdir) top_builddir= @top_builddir@ diff --git a/Makefile.in b/Makefile.in index 34152c7..deb2896 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,3 +1,4 @@ +# $Id: Makefile.in,v 1.3 1999/10/11 13:31:03 stelian Exp $ srcdir= @srcdir@ top_srcdir= @top_srcdir@ diff --git a/README b/README index 63d4f10..1e96d8d 100644 --- a/README +++ b/README @@ -1,3 +1,4 @@ +$Id: README,v 1.3 1999/10/11 13:31:04 stelian Exp $ This is a test release of dump 0.4. diff --git a/THANKS b/THANKS index 092b0c5..9b9dd7f 100644 --- a/THANKS +++ b/THANKS @@ -1,3 +1,5 @@ +$Id: THANKS,v 1.5 1999/10/11 13:31:04 stelian Exp $ + Dump and restore were written by the people of the CSRG at the University of California, Berkeley. diff --git a/TODO b/TODO index 1fdb8e3..dfc0672 100644 --- a/TODO +++ b/TODO @@ -1,3 +1,5 @@ +$Id: TODO,v 1.4 1999/10/11 13:31:04 stelian Exp $ + 1. Make dump honor the no-dump attribute on directories. Currently, it honours it only on files. This means that a directory flagged with the no-dump attribute will be dumped if it contains a file without diff --git a/acconfig.h b/acconfig.h index 761eb13..28e3ed8 100644 --- a/acconfig.h +++ b/acconfig.h @@ -1,3 +1,5 @@ +/* $Id: acconfig.h,v 1.2 1999/10/11 13:31:04 stelian Exp $ */ + /* Define to __s64 if does not define */ #undef quad_t diff --git a/common/Makefile.in b/common/Makefile.in index 9e4fd65..f3b0e1e 100644 --- a/common/Makefile.in +++ b/common/Makefile.in @@ -1,3 +1,5 @@ +# $Id: Makefile.in,v 1.3 1999/10/11 13:31:08 stelian Exp $ + top_srcdir= @top_srcdir@ srcdir= @srcdir@ diff --git a/common/dumprmt.c b/common/dumprmt.c index 6a79d07..33f712b 100644 --- a/common/dumprmt.c +++ b/common/dumprmt.c @@ -4,6 +4,7 @@ * Remy Card , 1994-1997 * Stelian Pop , 1999 * + * $Id: dumprmt.c,v 1.5 1999/10/11 13:31:08 stelian Exp $ */ /*- @@ -44,7 +45,7 @@ static char sccsid[] = "@(#)dumprmt.c 8.3 (Berkeley) 4/28/95"; #endif static const char rcsid[] = - "$Id: dumprmt.c,v 1.4 1999/10/11 13:08:06 stelian Exp $"; + "$Id: dumprmt.c,v 1.5 1999/10/11 13:31:08 stelian Exp $"; #endif /* not lint */ #ifdef __linux__ diff --git a/compat/include/Makefile.in b/compat/include/Makefile.in index 9c2e02b..0ad8908 100644 --- a/compat/include/Makefile.in +++ b/compat/include/Makefile.in @@ -1,3 +1,5 @@ +# $Id: Makefile.in,v 1.2 1999/10/11 13:31:08 stelian Exp $ + top_srcdir= @top_srcdir@ srcdir= @srcdir@ diff --git a/compat/include/bsdcompat.h b/compat/include/bsdcompat.h index 7a3b11e..89d7ae9 100644 --- a/compat/include/bsdcompat.h +++ b/compat/include/bsdcompat.h @@ -4,6 +4,7 @@ * Remy Card , 1994-1997 * Stelian Pop , 1999 * + * $Id: bsdcompat.h,v 1.5 1999/10/11 13:31:08 stelian Exp $ */ #include diff --git a/compat/include/compaterr.h b/compat/include/compaterr.h index 3aed6ba..759db4d 100644 --- a/compat/include/compaterr.h +++ b/compat/include/compaterr.h @@ -38,8 +38,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)err.h 8.1 (Berkeley) 6/2/93 - * $Id: compaterr.h,v 1.2 1999/10/11 13:08:06 stelian Exp $ + * $Id: compaterr.h,v 1.3 1999/10/11 13:31:09 stelian Exp $ */ #ifndef _ERR_H_ diff --git a/compat/include/compatglob.h b/compat/include/compatglob.h index 5557880..26432e4 100644 --- a/compat/include/compatglob.h +++ b/compat/include/compatglob.h @@ -41,7 +41,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)glob.h 8.1 (Berkeley) 6/2/93 + * $Id: compatglob.h,v 1.2 1999/10/11 13:31:09 stelian Exp $ */ #ifndef _GLOB_H_ diff --git a/compat/include/fstab.h b/compat/include/fstab.h index f479edc..2ca06ec 100644 --- a/compat/include/fstab.h +++ b/compat/include/fstab.h @@ -38,7 +38,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)fstab.h 8.1 (Berkeley) 6/2/93 + * $Id: fstab.h,v 1.3 1999/10/11 13:31:09 stelian Exp $ */ #ifndef _FSTAB_H_ diff --git a/compat/include/pathnames.h.in b/compat/include/pathnames.h.in index 1679565..21e8dea 100644 --- a/compat/include/pathnames.h.in +++ b/compat/include/pathnames.h.in @@ -38,7 +38,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)pathnames.h 8.1 (Berkeley) 6/5/93 + * $Id: pathnames.h.in,v 1.2 1999/10/11 13:31:09 stelian Exp $ */ #include diff --git a/compat/include/protocols/dumprestore.h b/compat/include/protocols/dumprestore.h index 72e999a..4985f80 100644 --- a/compat/include/protocols/dumprestore.h +++ b/compat/include/protocols/dumprestore.h @@ -43,7 +43,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)dumprestore.h 8.2 (Berkeley) 1/21/94 + * $Id: dumprestore.h,v 1.3 1999/10/11 13:31:09 stelian Exp $ */ #ifndef _PROTOCOLS_DUMPRESTORE_H_ diff --git a/compat/lib/Makefile.in b/compat/lib/Makefile.in index 8703e4a..fe6547d 100644 --- a/compat/lib/Makefile.in +++ b/compat/lib/Makefile.in @@ -1,3 +1,5 @@ +# $Id: Makefile.in,v 1.3 1999/10/11 13:31:10 stelian Exp $ + top_srcdir= @top_srcdir@ srcdir= @srcdir@ diff --git a/compat/lib/compaterr.c b/compat/lib/compaterr.c index d882068..0388baa 100644 --- a/compat/lib/compaterr.c +++ b/compat/lib/compaterr.c @@ -37,14 +37,10 @@ * 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. - * From: @(#)err.c 8.1 (Berkeley) 6/4/93 + * + * $Id: compaterr.c,v 1.3 1999/10/11 13:31:10 stelian Exp $ */ -#if defined(LIBC_RCS) && !defined(lint) -static const char rcsid[] = - "$Id: compaterr.c,v 1.2 1999/10/11 13:08:07 stelian Exp $"; -#endif /* LIBC_RCS and not lint */ - #include #include #include diff --git a/compat/lib/compatglob.c b/compat/lib/compatglob.c index cdbab02..7616b80 100644 --- a/compat/lib/compatglob.c +++ b/compat/lib/compatglob.c @@ -40,12 +40,10 @@ * 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. + * + * $Id: compatglob.c,v 1.2 1999/10/11 13:31:10 stelian Exp $ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; -#endif /* LIBC_SCCS and not lint */ - /* * glob(3) -- a superset of the one defined in POSIX 1003.2. * diff --git a/compat/lib/fstab.c b/compat/lib/fstab.c index cc2d255..32e6b02 100644 --- a/compat/lib/fstab.c +++ b/compat/lib/fstab.c @@ -37,12 +37,10 @@ * 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. + * + * $Id: fstab.c,v 1.4 1999/10/11 13:31:10 stelian Exp $ */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)fstab.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ - #include #include #include diff --git a/configure.in b/configure.in index a66f628..5071e94 100644 --- a/configure.in +++ b/configure.in @@ -1,3 +1,5 @@ +dnl $Id: configure.in,v 1.5 1999/10/11 13:31:04 stelian Exp $ + AC_INIT(dump/dump.h) MCONFIG=./MCONFIG diff --git a/depfix.sed b/depfix.sed index 1bcf112..4ed209a 100644 --- a/depfix.sed +++ b/depfix.sed @@ -1,3 +1,4 @@ +# $Id: depfix.sed,v 1.2 1999/10/11 13:31:04 stelian Exp $ # # Insert the header..... # diff --git a/dump/Makefile.in b/dump/Makefile.in index 2843a7b..26819b1 100644 --- a/dump/Makefile.in +++ b/dump/Makefile.in @@ -1,3 +1,5 @@ +# $Id: Makefile.in,v 1.4 1999/10/11 13:31:10 stelian Exp $ + top_srcdir= @top_srcdir@ srcdir= @srcdir@ diff --git a/dump/dump.8.in b/dump/dump.8.in index 84e462c..2626858 100644 --- a/dump/dump.8.in +++ b/dump/dump.8.in @@ -30,8 +30,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" @(#)dump.8 8.3 (Berkeley) 5/1/95 -.\" $Id: dump.8.in,v 1.1 1999/10/11 13:08:07 stelian Exp $ +.\" $Id: dump.8.in,v 1.2 1999/10/11 13:31:10 stelian Exp $ .\" .Dd __DATE__ .Dt DUMP 8 diff --git a/dump/dump.h b/dump/dump.h index ba7ed38..d47b071 100644 --- a/dump/dump.h +++ b/dump/dump.h @@ -38,7 +38,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)dump.h 8.2 (Berkeley) 4/28/95 + * $Id: dump.h,v 1.5 1999/10/11 13:31:11 stelian Exp $ */ #define MAXINOPB (MAXBSIZE / sizeof(struct dinode)) diff --git a/dump/itime.c b/dump/itime.c index e29632c..2529865 100644 --- a/dump/itime.c +++ b/dump/itime.c @@ -37,16 +37,10 @@ * 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. + * + * $Id: itime.c,v 1.5 1999/10/11 13:31:11 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)itime.c 8.1 (Berkeley) 6/5/93"; -#endif -static const char rcsid[] = - "$Id: itime.c,v 1.4 1999/10/11 13:08:07 stelian Exp $"; -#endif /* not lint */ - #include #include #ifdef __linux__ diff --git a/dump/main.c b/dump/main.c index 58ff5c3..1dc780d 100644 --- a/dump/main.c +++ b/dump/main.c @@ -37,22 +37,10 @@ * 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. + * + * $Id: main.c,v 1.5 1999/10/11 13:31:11 stelian Exp $ */ -#ifndef lint -static const char copyright[] = -"@(#) Copyright (c) 1980, 1991, 1993, 1994\n\ - The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ - -#ifndef lint -#if 0 -static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/1/95"; -#endif -static const char rcsid[] = - "$Id: main.c,v 1.4 1999/10/11 13:08:07 stelian Exp $"; -#endif /* not lint */ - #include #include #ifdef __linux__ diff --git a/dump/optr.c b/dump/optr.c index ab38a3d..6c2efb7 100644 --- a/dump/optr.c +++ b/dump/optr.c @@ -37,16 +37,10 @@ * 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. + * + * $Id: optr.c,v 1.5 1999/10/11 13:31:11 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)optr.c 8.2 (Berkeley) 1/6/94"; -#endif -static const char rcsid[] = - "$Id: optr.c,v 1.4 1999/10/11 13:08:08 stelian Exp $"; -#endif /* not lint */ - #include #include #include diff --git a/dump/tape.c b/dump/tape.c index 741f2de..4aaffb3 100644 --- a/dump/tape.c +++ b/dump/tape.c @@ -37,16 +37,10 @@ * 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. + * + * $Id: tape.c,v 1.5 1999/10/11 13:31:11 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)tape.c 8.4 (Berkeley) 5/1/95"; -#endif -static const char rcsid[] = - "$Id: tape.c,v 1.4 1999/10/11 13:08:08 stelian Exp $"; -#endif /* not lint */ - #ifdef __linux__ #include #include diff --git a/dump/traverse.c b/dump/traverse.c index d408993..c4e739c 100644 --- a/dump/traverse.c +++ b/dump/traverse.c @@ -37,16 +37,10 @@ * 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. + * + * $Id: traverse.c,v 1.5 1999/10/11 13:31:11 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)traverse.c 8.7 (Berkeley) 6/15/95"; -#endif -static const char rcsid[] = - "$Id: traverse.c,v 1.4 1999/10/11 13:08:08 stelian Exp $"; -#endif /* not lint */ - #include #include #ifdef __linux__ diff --git a/dump/unctime.c b/dump/unctime.c index ec0960f..845a333 100644 --- a/dump/unctime.c +++ b/dump/unctime.c @@ -37,16 +37,10 @@ * 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. + * + * $Id: unctime.c,v 1.5 1999/10/11 13:31:12 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)unctime.c 8.2 (Berkeley) 6/14/94"; -#endif -static const char rcsid[] = - "$Id: unctime.c,v 1.4 1999/10/11 13:08:08 stelian Exp $"; -#endif /* not lint */ - #include #ifdef __STDC__ #include diff --git a/restore/Makefile.in b/restore/Makefile.in index d8257fd..686a185 100644 --- a/restore/Makefile.in +++ b/restore/Makefile.in @@ -1,3 +1,5 @@ +# $Id: Makefile.in,v 1.4 1999/10/11 13:31:12 stelian Exp $ + top_srcdir= @top_srcdir@ srcdir= @srcdir@ diff --git a/restore/dirs.c b/restore/dirs.c index a6611c6..e4cffd9 100644 --- a/restore/dirs.c +++ b/restore/dirs.c @@ -42,16 +42,10 @@ * 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. + * + * $Id: dirs.c,v 1.5 1999/10/11 13:31:12 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)dirs.c 8.7 (Berkeley) 5/1/95"; -#endif -static const char rcsid[] = - "$Id: dirs.c,v 1.4 1999/10/11 13:08:08 stelian Exp $"; -#endif /* not lint */ - #include #include #include diff --git a/restore/extern.h b/restore/extern.h index 46e6cc2..8cf3f2c 100644 --- a/restore/extern.h +++ b/restore/extern.h @@ -38,8 +38,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)extern.h 8.2 (Berkeley) 1/7/94 - * $Id: extern.h,v 1.4 1999/10/11 13:08:09 stelian Exp $ + * $Id: extern.h,v 1.5 1999/10/11 13:31:12 stelian Exp $ */ struct entry *addentry __P((char *, ino_t, int)); diff --git a/restore/interactive.c b/restore/interactive.c index 2f26278..24cf18c 100644 --- a/restore/interactive.c +++ b/restore/interactive.c @@ -37,16 +37,10 @@ * 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. + * + * $Id: interactive.c,v 1.5 1999/10/11 13:31:12 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)interactive.c 8.5 (Berkeley) 5/1/95"; -#endif -static const char rcsid[] = - "$Id: interactive.c,v 1.4 1999/10/11 13:08:09 stelian Exp $"; -#endif /* not lint */ - #include #include diff --git a/restore/main.c b/restore/main.c index 7460d7d..b3a09ff 100644 --- a/restore/main.c +++ b/restore/main.c @@ -37,22 +37,10 @@ * 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. + * + * $Id: main.c,v 1.5 1999/10/11 13:31:13 stelian Exp $ */ -#ifndef lint -static const char copyright[] = -"@(#) Copyright (c) 1983, 1993\n\ - The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ - -#ifndef lint -#if 0 -static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/4/95"; -#endif -static const char rcsid[] = - "$Id: main.c,v 1.4 1999/10/11 13:08:09 stelian Exp $"; -#endif /* not lint */ - #include #include #include diff --git a/restore/restore.8.in b/restore/restore.8.in index 5c12337..7d846d6 100644 --- a/restore/restore.8.in +++ b/restore/restore.8.in @@ -29,8 +29,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" @(#)restore.8 8.4 (Berkeley) 5/1/95 -.\" $Id: restore.8.in,v 1.1 1999/10/11 13:08:09 stelian Exp $ +.\" $Id: restore.8.in,v 1.2 1999/10/11 13:31:13 stelian Exp $ .\" .Dd __DATE__ .Dt RESTORE 8 diff --git a/restore/restore.c b/restore/restore.c index 3eb6d93..2c10892 100644 --- a/restore/restore.c +++ b/restore/restore.c @@ -37,16 +37,10 @@ * 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. + * + * $Id: restore.c,v 1.5 1999/10/11 13:31:13 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)restore.c 8.3 (Berkeley) 9/13/94"; -#endif -static const char rcsid[] = - "$Id: restore.c,v 1.4 1999/10/11 13:08:09 stelian Exp $"; -#endif /* not lint */ - #include #ifdef __linux__ diff --git a/restore/restore.h b/restore/restore.h index cbe17bd..87a0397 100644 --- a/restore/restore.h +++ b/restore/restore.h @@ -43,7 +43,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)restore.h 8.3 (Berkeley) 9/13/94 + * $Id: restore.h,v 1.4 1999/10/11 13:31:13 stelian Exp $ */ /* diff --git a/restore/symtab.c b/restore/symtab.c index 275dd1c..35d0064 100644 --- a/restore/symtab.c +++ b/restore/symtab.c @@ -37,16 +37,10 @@ * 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. + * + * $Id: symtab.c,v 1.5 1999/10/11 13:31:13 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)symtab.c 8.3 (Berkeley) 4/28/95"; -#endif -static const char rcsid[] = - "$Id: symtab.c,v 1.4 1999/10/11 13:08:10 stelian Exp $"; -#endif /* not lint */ - /* * These routines maintain the symbol table which tracks the state * of the file system being restored. They provide lookup by either diff --git a/restore/tape.c b/restore/tape.c index ab0513a..32a5582 100644 --- a/restore/tape.c +++ b/restore/tape.c @@ -42,16 +42,10 @@ * 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. + * + * $Id: tape.c,v 1.5 1999/10/11 13:31:13 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)tape.c 8.9 (Berkeley) 5/1/95"; -#endif -static const char rcsid[] = - "$Id: tape.c,v 1.4 1999/10/11 13:08:10 stelian Exp $"; -#endif /* not lint */ - #include #include #include diff --git a/restore/utilities.c b/restore/utilities.c index 1498599..44cea04 100644 --- a/restore/utilities.c +++ b/restore/utilities.c @@ -37,16 +37,10 @@ * 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. + * + * $Id: utilities.c,v 1.5 1999/10/11 13:31:14 stelian Exp $ */ -#ifndef lint -#if 0 -static char sccsid[] = "@(#)utilities.c 8.5 (Berkeley) 4/28/95"; -#endif -static const char rcsid[] = - "$Id: utilities.c,v 1.4 1999/10/11 13:08:10 stelian Exp $"; -#endif /* not lint */ - #include #include diff --git a/rmt/Makefile.in b/rmt/Makefile.in index e1d4440..e098302 100644 --- a/rmt/Makefile.in +++ b/rmt/Makefile.in @@ -1,3 +1,5 @@ +# $Id: Makefile.in,v 1.4 1999/10/11 13:31:14 stelian Exp $ + top_srcdir= @top_srcdir@ srcdir= @srcdir@ diff --git a/rmt/rmt.8.in b/rmt/rmt.8.in index 2f3b3df..e887878 100644 --- a/rmt/rmt.8.in +++ b/rmt/rmt.8.in @@ -29,7 +29,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" @(#)rmt.8 8.3 (Berkeley) 6/1/94 +.\" $Id: rmt.8.in,v 1.2 1999/10/11 13:31:14 stelian Exp $ .\" .Dd __DATE__ .Dt RMT 8 diff --git a/rmt/rmt.c b/rmt/rmt.c index 7e79dfb..590bbc4 100644 --- a/rmt/rmt.c +++ b/rmt/rmt.c @@ -37,22 +37,10 @@ * 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. + * + * $Id: rmt.c,v 1.5 1999/10/11 13:31:14 stelian Exp $ */ -#ifndef lint -static const char copyright[] = -"@(#) Copyright (c) 1983, 1993\n\ - The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ - -#ifndef lint -#if 0 -static char sccsid[] = "@(#)rmt.c 8.1 (Berkeley) 6/6/93"; -#endif -static const char rcsid[] = - "$Id: rmt.c,v 1.4 1999/10/11 13:08:11 stelian Exp $"; -#endif /* not lint */ - /* * rmt */ -- 2.39.2