summaryrefslogtreecommitdiffstats
path: root/sbin/routed
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-08-28 00:22:10 +0000
committerpeter <peter@FreeBSD.org>1999-08-28 00:22:10 +0000
commit76f0c923fe4b2a1616453876611dc76b4f6b5355 (patch)
tree11c3e263d5f0f3acaf3b23fd63177baa9d93b750 /sbin/routed
parentc148814ac642685a549ea821e649cd359879c935 (diff)
downloadFreeBSD-src-76f0c923fe4b2a1616453876611dc76b4f6b5355.zip
FreeBSD-src-76f0c923fe4b2a1616453876611dc76b4f6b5355.tar.gz
$Id$ -> $FreeBSD$
Diffstat (limited to 'sbin/routed')
-rw-r--r--sbin/routed/Makefile4
-rw-r--r--sbin/routed/defs.h4
-rw-r--r--sbin/routed/if.c4
-rw-r--r--sbin/routed/input.c4
-rw-r--r--sbin/routed/main.c4
-rw-r--r--sbin/routed/output.c4
-rw-r--r--sbin/routed/parms.c4
-rw-r--r--sbin/routed/pathnames.h2
-rw-r--r--sbin/routed/radix.c4
-rw-r--r--sbin/routed/radix.h2
-rw-r--r--sbin/routed/rdisc.c4
-rw-r--r--sbin/routed/routed.84
-rw-r--r--sbin/routed/rtquery/Makefile4
-rw-r--r--sbin/routed/rtquery/rtquery.84
-rw-r--r--sbin/routed/rtquery/rtquery.c4
-rw-r--r--sbin/routed/table.c4
-rw-r--r--sbin/routed/trace.c4
17 files changed, 32 insertions, 32 deletions
diff --git a/sbin/routed/Makefile b/sbin/routed/Makefile
index fb8c3de..07255f2 100644
--- a/sbin/routed/Makefile
+++ b/sbin/routed/Makefile
@@ -1,6 +1,6 @@
# Make `routed` for FreeBSD
-# $Revision: 2.15 $
-# $Id$
+# $Revision: 1.6 $
+# $FreeBSD$
PROG= routed
SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c
diff --git a/sbin/routed/defs.h b/sbin/routed/defs.h
index 59a9aff..ad04296 100644
--- a/sbin/routed/defs.h
+++ b/sbin/routed/defs.h
@@ -32,11 +32,11 @@
*
* @(#)defs.h 8.1 (Berkeley) 6/5/93
*
- * $Id$
+ * $FreeBSD$
*/
#ifdef sgi
-#ident "$Revision: 2.17 $"
+#ident "$Revision: 1.11 $"
#endif
/* Definitions for RIPv2 routing process.
diff --git a/sbin/routed/if.c b/sbin/routed/if.c
index 7b40d2a..4ee69d0 100644
--- a/sbin/routed/if.c
+++ b/sbin/routed/if.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
#include "defs.h"
@@ -42,7 +42,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)if.c 8.1 (Berkeley) 6/5/93";
#include <sys/cdefs.h>
__RCSID("$NetBSD$");
#endif
-#ident "$Revision: 2.17 $"
+#ident "$Revision: 1.4 $"
struct interface *ifnet; /* all interfaces */
diff --git a/sbin/routed/input.c b/sbin/routed/input.c
index cf5171d..074f6d6 100644
--- a/sbin/routed/input.c
+++ b/sbin/routed/input.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
#include "defs.h"
@@ -41,7 +41,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)input.c 8.1 (Berkeley) 6/5/9
#include <sys/cdefs.h>
__RCSID("$NetBSD$");
#endif
-#ident "$Revision: 2.17 $"
+#ident "$Revision: 1.5 $"
static void input(struct sockaddr_in *, struct interface *, struct interface *,
struct rip *, int);
diff --git a/sbin/routed/main.c b/sbin/routed/main.c
index dfd436e..aab7b8a 100644
--- a/sbin/routed/main.c
+++ b/sbin/routed/main.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
#include "defs.h"
@@ -52,7 +52,7 @@ __RCSID("$NetBSD$");
__COPYRIGHT("@(#) Copyright (c) 1983, 1988, 1993\n\
The Regents of the University of California. All rights reserved.\n");
#endif
-#ident "$Revision: 2.17 $"
+#ident "$Revision: 1.9 $"
pid_t mypid;
diff --git a/sbin/routed/output.c b/sbin/routed/output.c
index b1593b8..7847fde 100644
--- a/sbin/routed/output.c
+++ b/sbin/routed/output.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
#include "defs.h"
@@ -40,7 +40,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)output.c 8.1 (Berkeley) 6/5/
#elif defined(__NetBSD__)
__RCSID("$NetBSD$");
#endif
-#ident "$Revision: 2.17 $"
+#ident "$Revision: 1.3 $"
u_int update_seqno;
diff --git a/sbin/routed/parms.c b/sbin/routed/parms.c
index 7e6a2a4..78f12eb 100644
--- a/sbin/routed/parms.c
+++ b/sbin/routed/parms.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
#include "defs.h"
@@ -42,7 +42,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)if.c 8.1 (Berkeley) 6/5/93";
#elif defined(__NetBSD__)
__RCSID("$NetBSD$");
#endif
-#ident "$Revision: 2.17 $"
+#ident "$Revision: 1.5 $"
struct parm *parms;
diff --git a/sbin/routed/pathnames.h b/sbin/routed/pathnames.h
index 9a9466f..b99bcc2 100644
--- a/sbin/routed/pathnames.h
+++ b/sbin/routed/pathnames.h
@@ -32,7 +32,7 @@
*
* @(#)pathnames.h 8.1 (Berkeley) 6/5/93
*
- * $Id$
+ * $FreeBSD$
*/
#include <paths.h>
diff --git a/sbin/routed/radix.c b/sbin/routed/radix.c
index 9d45b59..0c93ca7 100644
--- a/sbin/routed/radix.c
+++ b/sbin/routed/radix.c
@@ -32,7 +32,7 @@
*
* @(#)radix.c 8.4 (Berkeley) 11/2/94
*
- * $Id$
+ * $FreeBSD$
*/
/*
@@ -46,7 +46,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)rdisc.c 8.1 (Berkeley) x/y/9
#elif defined(__NetBSD__)
__RCSID("$NetBSD$");
#endif
-#ident "$Revision: 2.17 $"
+#ident "$Revision: 1.3 $"
#define log(x, msg) syslog(x, msg)
#define panic(s) {log(LOG_ERR,s); exit(1);}
diff --git a/sbin/routed/radix.h b/sbin/routed/radix.h
index 44fb062..ab3bf62 100644
--- a/sbin/routed/radix.h
+++ b/sbin/routed/radix.h
@@ -32,7 +32,7 @@
*
* @(#)radix.h 8.2 (Berkeley) 10/31/94
*
- * $Id$
+ * $FreeBSD$
*/
#ifndef __RADIX_H_
diff --git a/sbin/routed/rdisc.c b/sbin/routed/rdisc.c
index 4d54b33..6543cc6 100644
--- a/sbin/routed/rdisc.c
+++ b/sbin/routed/rdisc.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
#include "defs.h"
@@ -43,7 +43,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)rdisc.c 8.1 (Berkeley) x/y/9
#elif defined(__NetBSD__)
__RCSID"$NetBSD$");
#endif
-#ident "$Revision: 2.17 $"
+#ident "$Revision: 1.3 $"
/* router advertisement ICMP packet */
struct icmp_ad {
diff --git a/sbin/routed/routed.8 b/sbin/routed/routed.8
index d357ba5..2366e91 100644
--- a/sbin/routed/routed.8
+++ b/sbin/routed/routed.8
@@ -1,4 +1,4 @@
-.\" $Revision: 2.17 $
+.\" $Revision: 1.12 $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -33,7 +33,7 @@
.\"
.\" @(#)routed.8 8.2 (Berkeley) 12/11/93
.\"
-.\" $Id$
+.\" $FreeBSD$
.\"
.Dd June 1, 1996
.Dt ROUTED 8
diff --git a/sbin/routed/rtquery/Makefile b/sbin/routed/rtquery/Makefile
index d371d5d..3e8049d 100644
--- a/sbin/routed/rtquery/Makefile
+++ b/sbin/routed/rtquery/Makefile
@@ -1,6 +1,6 @@
# Make `routed` tools for BSD/OS
-# $Revision: 2.15 $
-# $Id$
+# $Revision: 1.6 $
+# $FreeBSD$
PROG= rtquery
MAN8= rtquery.8
diff --git a/sbin/routed/rtquery/rtquery.8 b/sbin/routed/rtquery/rtquery.8
index 094a918..c7dcab7 100644
--- a/sbin/routed/rtquery/rtquery.8
+++ b/sbin/routed/rtquery/rtquery.8
@@ -1,5 +1,5 @@
-.\" $Revision: 1.9 $
-.\" $Id: rtquery.8,v 1.9 1999/05/02 13:14:16 markm Exp $
+.\" $Revision: 1.10 $
+.\" $FreeBSD$
.\"
.Dd June 1, 1996
.Dt RTQUERY 8
diff --git a/sbin/routed/rtquery/rtquery.c b/sbin/routed/rtquery/rtquery.c
index a7dc23e..1441699 100644
--- a/sbin/routed/rtquery/rtquery.c
+++ b/sbin/routed/rtquery/rtquery.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
char copyright[] =
@@ -62,7 +62,7 @@ static char sccsid[] __attribute__((unused))= "@(#)query.c 8.1 (Berkeley) 6/5/93
#elif defined(__NetBSD__)
__RCSID("$NetBSD: rtquery.c,v 1.10 1999/02/23 10:47:41 christos Exp $");
#endif
-#ident "$Revision$"
+#ident "$Revision: 1.12 $"
#ifndef sgi
#define _HAVE_SIN_LEN
diff --git a/sbin/routed/table.c b/sbin/routed/table.c
index fa01db3..e91a2c0 100644
--- a/sbin/routed/table.c
+++ b/sbin/routed/table.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
#include "defs.h"
@@ -40,7 +40,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)tables.c 8.1 (Berkeley) 6/5/
#elif defined(__NetBSD__)
__RCSID("$NetBSD$");
#endif
-#ident "$Revision: 2.17 $"
+#ident "$Revision: 1.7 $"
static struct rt_spare *rts_better(struct rt_entry *);
static struct rt_spare rts_empty = {0,0,0,HOPCNT_INFINITY,0,0,0};
diff --git a/sbin/routed/trace.c b/sbin/routed/trace.c
index 48d383a..fd7d474 100644
--- a/sbin/routed/trace.c
+++ b/sbin/routed/trace.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $FreeBSD$
*/
#define RIPCMDS
@@ -45,7 +45,7 @@ static char sccsid[] __attribute__((unused)) = "@(#)trace.c 8.1 (Berkeley) 6/5/9
#elif defined(__NetBSD__)
__RCSID("$NetBSD$");
#endif
-#ident "$Revision: 2.17 $"
+#ident "$Revision: 1.3 $"
#ifdef sgi
OpenPOWER on IntegriCloud