diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-05-31 20:28:49 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-05-31 20:28:49 +0000 |
commit | 7f6920d685af29ae9a32ec5aa37e42857976ed65 (patch) | |
tree | 9aa5b2ad52dab090dc7a7a3b37c7797e989fbe19 /sbin/routed | |
parent | c66aba3f757f62003e741209a4c1dd7099148d9c (diff) | |
download | FreeBSD-src-7f6920d685af29ae9a32ec5aa37e42857976ed65.zip FreeBSD-src-7f6920d685af29ae9a32ec5aa37e42857976ed65.tar.gz |
Remove #ident directives, they don't exist on the vendor branch anymore.
Diffstat (limited to 'sbin/routed')
-rw-r--r-- | sbin/routed/if.c | 2 | ||||
-rw-r--r-- | sbin/routed/input.c | 1 | ||||
-rw-r--r-- | sbin/routed/main.c | 1 | ||||
-rw-r--r-- | sbin/routed/output.c | 1 | ||||
-rw-r--r-- | sbin/routed/parms.c | 1 | ||||
-rw-r--r-- | sbin/routed/radix.c | 1 | ||||
-rw-r--r-- | sbin/routed/rdisc.c | 1 | ||||
-rw-r--r-- | sbin/routed/table.c | 1 | ||||
-rw-r--r-- | sbin/routed/trace.c | 1 |
9 files changed, 1 insertions, 9 deletions
diff --git a/sbin/routed/if.c b/sbin/routed/if.c index b6e7a53..291eb19 100644 --- a/sbin/routed/if.c +++ b/sbin/routed/if.c @@ -40,7 +40,7 @@ __RCSID("$FreeBSD$"); __RCSID("$Revision: 2.27 $"); #ident "$Revision: 2.27 $" #endif -#ident "$FreeBSD$" + struct interface *ifnet; /* all interfaces */ /* hash table for all interfaces, big enough to tolerate ridiculous diff --git a/sbin/routed/input.c b/sbin/routed/input.c index 674a388..085ba95 100644 --- a/sbin/routed/input.c +++ b/sbin/routed/input.c @@ -39,7 +39,6 @@ __RCSID("$FreeBSD$"); __RCSID("$Revision: 2.26 $"); #ident "$Revision: 2.26 $" #endif -#ident "$FreeBSD$" 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 67d168a..722061e 100644 --- a/sbin/routed/main.c +++ b/sbin/routed/main.c @@ -50,7 +50,6 @@ __RCSID("$FreeBSD$"); __RCSID("$Revision: 2.27 $"); #ident "$Revision: 2.27 $" #endif -#ident "$FreeBSD$" pid_t mypid; diff --git a/sbin/routed/output.c b/sbin/routed/output.c index e0befc8..c9db470 100644 --- a/sbin/routed/output.c +++ b/sbin/routed/output.c @@ -39,7 +39,6 @@ __RCSID("$FreeBSD$"); __RCSID("$Revision: 2.27 $"); #ident "$Revision: 2.27 $" #endif -#ident "$FreeBSD$" u_int update_seqno; diff --git a/sbin/routed/parms.c b/sbin/routed/parms.c index 9472d82..356ac8e 100644 --- a/sbin/routed/parms.c +++ b/sbin/routed/parms.c @@ -41,7 +41,6 @@ __RCSID("$FreeBSD$"); __RCSID("$Revision: 2.26 $"); #ident "$Revision: 2.26 $" #endif -#ident "$FreeBSD$" struct parm *parms; diff --git a/sbin/routed/radix.c b/sbin/routed/radix.c index 5e65b8f..7f37688 100644 --- a/sbin/routed/radix.c +++ b/sbin/routed/radix.c @@ -45,7 +45,6 @@ __RCSID("$FreeBSD$"); __RCSID("$Revision: 2.23 $"); #ident "$Revision: 2.23 $" #endif -#ident "$FreeBSD$" #define log(x, msg) syslog(x, msg) #define panic(s) {log(LOG_ERR,s); exit(1);} diff --git a/sbin/routed/rdisc.c b/sbin/routed/rdisc.c index 0cdbc7c..047b3d1 100644 --- a/sbin/routed/rdisc.c +++ b/sbin/routed/rdisc.c @@ -42,7 +42,6 @@ __RCSID("$FreeBSD$"); __RCSID("$Revision: 2.27 $"); #ident "$Revision: 2.27 $" #endif -#ident "$FreeBSD$" /* router advertisement ICMP packet */ struct icmp_ad { diff --git a/sbin/routed/table.c b/sbin/routed/table.c index 5dfd195..491c5cf 100644 --- a/sbin/routed/table.c +++ b/sbin/routed/table.c @@ -39,7 +39,6 @@ __RCSID("$FreeBSD$"); __RCSID("$Revision: 2.27 $"); #ident "$Revision: 2.27 $" #endif -#ident "$FreeBSD$" 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 1435faa..320056f 100644 --- a/sbin/routed/trace.c +++ b/sbin/routed/trace.c @@ -44,7 +44,6 @@ __RCSID("$FreeBSD$"); __RCSID("$Revision: 2.27 $"); #ident "$Revision: 2.27 $" #endif -#ident "$FreeBSD$" #ifdef sgi |