summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2003-07-28 06:13:26 +0000
committertedu <tedu@openbsd.org>2003-07-28 06:13:26 +0000
commitadb1fa9f8c244fd545ae6fd69e515b81e9509a0e (patch)
tree3a759744ef59dc5f11852dc659ca48c9b31d0308
parentrcsid should say openbsd (diff)
downloadwireguard-openbsd-adb1fa9f8c244fd545ae6fd69e515b81e9509a0e.tar.xz
wireguard-openbsd-adb1fa9f8c244fd545ae6fd69e515b81e9509a0e.zip
rcsid should say openbsd. make 'em const while here.
-rw-r--r--sbin/dump/dumprmt.c4
-rw-r--r--sbin/dump/itime.c4
-rw-r--r--sbin/dump/main.c4
-rw-r--r--sbin/dump/optr.c4
-rw-r--r--sbin/dump/tape.c4
-rw-r--r--sbin/dump/traverse.c4
-rw-r--r--sbin/restore/dirs.c4
-rw-r--r--sbin/restore/interactive.c4
-rw-r--r--sbin/restore/main.c4
-rw-r--r--sbin/restore/restore.c4
-rw-r--r--sbin/restore/symtab.c4
-rw-r--r--sbin/restore/tape.c4
-rw-r--r--sbin/restore/utilities.c4
13 files changed, 26 insertions, 26 deletions
diff --git a/sbin/dump/dumprmt.c b/sbin/dump/dumprmt.c
index aa83958f659..c3f0a78ba27 100644
--- a/sbin/dump/dumprmt.c
+++ b/sbin/dump/dumprmt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dumprmt.c,v 1.21 2003/06/26 16:35:21 deraadt Exp $ */
+/* $OpenBSD: dumprmt.c,v 1.22 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: dumprmt.c,v 1.17 1997/06/05 16:10:47 mrg Exp $ */
/*-
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)dumprmt.c 8.1 (Berkeley) 6/5/93";
#else
-static char rcsid[] = "$NetBSD: dumprmt.c,v 1.10 1996/03/15 22:39:26 scottr Exp $";
+static const char rcsid[] = "$OpenBSD: dumprmt.c,v 1.22 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/dump/itime.c b/sbin/dump/itime.c
index e19246dd919..136ae89c3f2 100644
--- a/sbin/dump/itime.c
+++ b/sbin/dump/itime.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: itime.c,v 1.10 2003/06/26 16:35:21 deraadt Exp $ */
+/* $OpenBSD: itime.c,v 1.11 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: itime.c,v 1.4 1997/04/15 01:09:50 lukem Exp $ */
/*-
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)itime.c 8.1 (Berkeley) 6/5/93";
#else
-static char rcsid[] = "$OpenBSD: itime.c,v 1.10 2003/06/26 16:35:21 deraadt Exp $";
+static const char rcsid[] = "$OpenBSD: itime.c,v 1.11 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/dump/main.c b/sbin/dump/main.c
index b648f6d24d5..5f43c3e877a 100644
--- a/sbin/dump/main.c
+++ b/sbin/dump/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.34 2003/06/26 16:35:21 deraadt Exp $ */
+/* $OpenBSD: main.c,v 1.35 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: main.c,v 1.14 1997/06/05 11:13:24 lukem Exp $ */
/*-
@@ -40,7 +40,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 4/15/94";
#else
-static char rcsid[] = "$NetBSD: main.c,v 1.8 1996/03/15 22:39:32 scottr Exp $";
+static const char rcsid[] = "$OpenBSD: main.c,v 1.35 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/dump/optr.c b/sbin/dump/optr.c
index ba9cb2f80f3..e65c2813e50 100644
--- a/sbin/dump/optr.c
+++ b/sbin/dump/optr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: optr.c,v 1.25 2003/07/07 01:25:30 millert Exp $ */
+/* $OpenBSD: optr.c,v 1.26 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: optr.c,v 1.11 1997/05/27 08:34:36 mrg Exp $ */
/*-
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)optr.c 8.2 (Berkeley) 1/6/94";
#else
-static char rcsid[] = "$OpenBSD: optr.c,v 1.25 2003/07/07 01:25:30 millert Exp $";
+static const char rcsid[] = "$OpenBSD: optr.c,v 1.26 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/dump/tape.c b/sbin/dump/tape.c
index 50e30768c75..70628dae9ec 100644
--- a/sbin/dump/tape.c
+++ b/sbin/dump/tape.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tape.c,v 1.18 2003/07/07 01:25:30 millert Exp $ */
+/* $OpenBSD: tape.c,v 1.19 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: tape.c,v 1.11 1997/06/05 11:13:26 lukem Exp $ */
/*-
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)tape.c 8.2 (Berkeley) 3/17/94";
#else
-static char rcsid[] = "$OpenBSD: tape.c,v 1.18 2003/07/07 01:25:30 millert Exp $";
+static const char rcsid[] = "$OpenBSD: tape.c,v 1.19 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/dump/traverse.c b/sbin/dump/traverse.c
index a32bf9dcb29..6797725a696 100644
--- a/sbin/dump/traverse.c
+++ b/sbin/dump/traverse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: traverse.c,v 1.13 2003/06/26 16:35:21 deraadt Exp $ */
+/* $OpenBSD: traverse.c,v 1.14 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: traverse.c,v 1.17 1997/06/05 11:13:27 lukem Exp $ */
/*-
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)traverse.c 8.2 (Berkeley) 9/23/93";
#else
-static char rcsid[] = "$OpenBSD: traverse.c,v 1.13 2003/06/26 16:35:21 deraadt Exp $";
+static const char rcsid[] = "$OpenBSD: traverse.c,v 1.14 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/restore/dirs.c b/sbin/restore/dirs.c
index 8c87a886ea3..7582adb38a9 100644
--- a/sbin/restore/dirs.c
+++ b/sbin/restore/dirs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dirs.c,v 1.23 2003/07/07 00:51:52 millert Exp $ */
+/* $OpenBSD: dirs.c,v 1.24 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: dirs.c,v 1.26 1997/07/01 05:37:49 lukem Exp $ */
/*
@@ -39,7 +39,7 @@
#if 0
static char sccsid[] = "@(#)dirs.c 8.5 (Berkeley) 8/31/94";
#else
-static char rcsid[] = "$OpenBSD: dirs.c,v 1.23 2003/07/07 00:51:52 millert Exp $";
+static const char rcsid[] = "$OpenBSD: dirs.c,v 1.24 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/restore/interactive.c b/sbin/restore/interactive.c
index 2e8fc86a7f0..63127b90e28 100644
--- a/sbin/restore/interactive.c
+++ b/sbin/restore/interactive.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: interactive.c,v 1.18 2003/07/10 00:00:58 david Exp $ */
+/* $OpenBSD: interactive.c,v 1.19 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: interactive.c,v 1.10 1997/03/19 08:42:52 lukem Exp $ */
/*
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)interactive.c 8.3 (Berkeley) 9/13/94";
#else
-static char rcsid[] = "$OpenBSD: interactive.c,v 1.18 2003/07/10 00:00:58 david Exp $";
+static const char rcsid[] = "$OpenBSD: interactive.c,v 1.19 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/restore/main.c b/sbin/restore/main.c
index 68f923b3ac8..4d2ad3e1541 100644
--- a/sbin/restore/main.c
+++ b/sbin/restore/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.13 2003/06/02 20:06:16 millert Exp $ */
+/* $OpenBSD: main.c,v 1.14 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: main.c,v 1.13 1997/07/01 05:37:51 lukem Exp $ */
/*
@@ -40,7 +40,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 9/13/94";
#else
-static char rcsid[] = "$NetBSD: main.c,v 1.11 1996/03/15 22:39:39 scottr Exp $";
+static const char rcsid[] = "$OpenBSD: main.c,v 1.14 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/restore/restore.c b/sbin/restore/restore.c
index 16cf3bbe925..cfae255ac07 100644
--- a/sbin/restore/restore.c
+++ b/sbin/restore/restore.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: restore.c,v 1.10 2003/06/02 20:06:16 millert Exp $ */
+/* $OpenBSD: restore.c,v 1.11 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: restore.c,v 1.9 1997/06/18 07:10:16 lukem Exp $ */
/*
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)restore.c 8.3 (Berkeley) 9/13/94";
#else
-static char rcsid[] = "$OpenBSD: restore.c,v 1.10 2003/06/02 20:06:16 millert Exp $";
+static const char rcsid[] = "$OpenBSD: restore.c,v 1.11 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/restore/symtab.c b/sbin/restore/symtab.c
index a7c2ca832ca..7cee1059c17 100644
--- a/sbin/restore/symtab.c
+++ b/sbin/restore/symtab.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: symtab.c,v 1.10 2003/06/02 20:06:16 millert Exp $ */
+/* $OpenBSD: symtab.c,v 1.11 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: symtab.c,v 1.10 1997/03/19 08:42:54 lukem Exp $ */
/*
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)symtab.c 8.2 (Berkeley) 9/13/94";
#else
-static char rcsid[] = "$OpenBSD: symtab.c,v 1.10 2003/06/02 20:06:16 millert Exp $";
+static const char rcsid[] = "$OpenBSD: symtab.c,v 1.11 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/restore/tape.c b/sbin/restore/tape.c
index 55fe46cffbb..e54e5b23e39 100644
--- a/sbin/restore/tape.c
+++ b/sbin/restore/tape.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tape.c,v 1.25 2003/06/19 03:49:44 millert Exp $ */
+/* $OpenBSD: tape.c,v 1.26 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: tape.c,v 1.26 1997/04/15 07:12:25 lukem Exp $ */
/*
@@ -39,7 +39,7 @@
#if 0
static char sccsid[] = "@(#)tape.c 8.6 (Berkeley) 9/13/94";
#else
-static char rcsid[] = "$NetBSD: tape.c,v 1.22 1996/11/30 18:31:29 cgd Exp $";
+static const char rcsid[] = "$OpenBSD: tape.c,v 1.26 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/restore/utilities.c b/sbin/restore/utilities.c
index f9c10c7375e..36662c34686 100644
--- a/sbin/restore/utilities.c
+++ b/sbin/restore/utilities.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: utilities.c,v 1.12 2003/06/02 20:06:16 millert Exp $ */
+/* $OpenBSD: utilities.c,v 1.13 2003/07/28 06:13:26 tedu Exp $ */
/* $NetBSD: utilities.c,v 1.11 1997/03/19 08:42:56 lukem Exp $ */
/*
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)utilities.c 8.4 (Berkeley) 10/18/94";
#else
-static char rcsid[] = "$OpenBSD: utilities.c,v 1.12 2003/06/02 20:06:16 millert Exp $";
+static const char rcsid[] = "$OpenBSD: utilities.c,v 1.13 2003/07/28 06:13:26 tedu Exp $";
#endif
#endif /* not lint */