aboutsummaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2023-08-16 17:54:48 +0000
committerWarner Losh <imp@FreeBSD.org>2023-08-16 17:54:48 +0000
commitda5432eda807c4b7232d030d5157d5b417ea4f52 (patch)
treecd05a65c30feb6db808933bcf8850c046e4d8899 /sbin
parent1d386b48a555f61cb7325543adbbb5c3f3407a66 (diff)
Diffstat (limited to 'sbin')
-rw-r--r--sbin/routed/if.c3
-rw-r--r--sbin/routed/input.c3
-rw-r--r--sbin/routed/main.c2
-rw-r--r--sbin/routed/output.c3
-rw-r--r--sbin/routed/parms.c3
-rw-r--r--sbin/routed/radix.c3
-rw-r--r--sbin/routed/rdisc.c3
-rw-r--r--sbin/routed/table.c3
-rw-r--r--sbin/routed/trace.c3
9 files changed, 0 insertions, 26 deletions
diff --git a/sbin/routed/if.c b/sbin/routed/if.c
index 83d8fe503893..72894942fe05 100644
--- a/sbin/routed/if.c
+++ b/sbin/routed/if.c
@@ -33,9 +33,6 @@
#include "defs.h"
#include "pathnames.h"
-
-__RCSID("$FreeBSD$");
-
struct ifhead ifnet = LIST_HEAD_INITIALIZER(ifnet); /* all interfaces */
struct ifhead remote_if = LIST_HEAD_INITIALIZER(remote_if); /* remote interfaces */
diff --git a/sbin/routed/input.c b/sbin/routed/input.c
index 854bfd8d9e66..238933d29e6b 100644
--- a/sbin/routed/input.c
+++ b/sbin/routed/input.c
@@ -30,9 +30,6 @@
*/
#include "defs.h"
-
-__RCSID("$FreeBSD$");
-
static void input(struct sockaddr_in *, struct interface *, struct interface *,
struct rip *, int);
static void input_route(naddr, naddr, struct rt_spare *, struct netinfo *);
diff --git a/sbin/routed/main.c b/sbin/routed/main.c
index cfc0c148971c..491a40026345 100644
--- a/sbin/routed/main.c
+++ b/sbin/routed/main.c
@@ -38,8 +38,6 @@
__COPYRIGHT("@(#) Copyright (c) 1983, 1988, 1993 "
"The Regents of the University of California."
" All rights reserved.");
-__RCSID("$FreeBSD$");
-
pid_t mypid;
naddr myaddr; /* system address */
diff --git a/sbin/routed/output.c b/sbin/routed/output.c
index 2974f2a6f19e..726fab2c11b5 100644
--- a/sbin/routed/output.c
+++ b/sbin/routed/output.c
@@ -31,9 +31,6 @@
#include "defs.h"
-__RCSID("$FreeBSD$");
-
-
u_int update_seqno;
diff --git a/sbin/routed/parms.c b/sbin/routed/parms.c
index bd4fab045f84..59f141c76c66 100644
--- a/sbin/routed/parms.c
+++ b/sbin/routed/parms.c
@@ -33,9 +33,6 @@
#include "pathnames.h"
#include <sys/stat.h>
-__RCSID("$FreeBSD$");
-
-
static struct parm *parms;
struct intnet *intnets;
struct r1net *r1nets;
diff --git a/sbin/routed/radix.c b/sbin/routed/radix.c
index 36a404f9d043..c4a0e5de2c2c 100644
--- a/sbin/routed/radix.c
+++ b/sbin/routed/radix.c
@@ -36,9 +36,6 @@
*/
#include "defs.h"
-
-__RCSID("$FreeBSD$");
-
#define log(x, msg) syslog(x, msg)
#define panic(s) {log(LOG_ERR,s); exit(1);}
#define min(a,b) (((a)<(b))?(a):(b))
diff --git a/sbin/routed/rdisc.c b/sbin/routed/rdisc.c
index f72b1dd7fda7..2dfcc15768d8 100644
--- a/sbin/routed/rdisc.c
+++ b/sbin/routed/rdisc.c
@@ -33,9 +33,6 @@
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h>
-
-__RCSID("$FreeBSD$");
-
/* router advertisement ICMP packet */
struct icmp_ad {
u_int8_t icmp_type; /* type of message */
diff --git a/sbin/routed/table.c b/sbin/routed/table.c
index 7db9d784278b..b43c8bb873a5 100644
--- a/sbin/routed/table.c
+++ b/sbin/routed/table.c
@@ -30,9 +30,6 @@
*/
#include "defs.h"
-
-__RCSID("$FreeBSD$");
-
static struct rt_spare *rts_better(struct rt_entry *);
static struct rt_spare rts_empty = {0,0,0,HOPCNT_INFINITY,0,0,0};
static void set_need_flash(void);
diff --git a/sbin/routed/trace.c b/sbin/routed/trace.c
index 1166039499bd..59929b130b1a 100644
--- a/sbin/routed/trace.c
+++ b/sbin/routed/trace.c
@@ -36,9 +36,6 @@
#include <sys/signal.h>
#include <fcntl.h>
-__RCSID("$FreeBSD$");
-
-
int tracelevel, new_tracelevel;
FILE *ftrace; /* output trace file */