diff options
Diffstat (limited to 'usr.sbin/route6d')
-rw-r--r-- | usr.sbin/route6d/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/route6d/Makefile.depend | 2 | ||||
-rwxr-xr-x | usr.sbin/route6d/misc/chkrt | 1 | ||||
-rw-r--r-- | usr.sbin/route6d/misc/cksum.c | 2 | ||||
-rw-r--r-- | usr.sbin/route6d/route6d.8 | 9 | ||||
-rw-r--r-- | usr.sbin/route6d/route6d.c | 8 | ||||
-rw-r--r-- | usr.sbin/route6d/route6d.h | 1 |
7 files changed, 9 insertions, 18 deletions
diff --git a/usr.sbin/route6d/Makefile b/usr.sbin/route6d/Makefile index df23d33aea57..d2a7151249f1 100644 --- a/usr.sbin/route6d/Makefile +++ b/usr.sbin/route6d/Makefile @@ -1,6 +1,4 @@ -# @(#)Makefile 8.1 (Berkeley) 6/5/93 -# $FreeBSD$ - +PACKAGE=rip PROG= route6d MAN= route6d.8 diff --git a/usr.sbin/route6d/Makefile.depend b/usr.sbin/route6d/Makefile.depend index d5ed563ecfc8..344a5d0e9310 100644 --- a/usr.sbin/route6d/Makefile.depend +++ b/usr.sbin/route6d/Makefile.depend @@ -1,8 +1,6 @@ -# $FreeBSD$ # Autogenerated - do NOT edit! DIRDEPS = \ - gnu/lib/csu \ include \ include/arpa \ include/xlocale \ diff --git a/usr.sbin/route6d/misc/chkrt b/usr.sbin/route6d/misc/chkrt index 6ae01f37be04..86e61b281140 100755 --- a/usr.sbin/route6d/misc/chkrt +++ b/usr.sbin/route6d/misc/chkrt @@ -1,6 +1,5 @@ #!/usr/bin/perl # -# $FreeBSD$ # $dump="/var/tmp/route6d_dump"; $pidfile="/var/run/route6d.pid"; diff --git a/usr.sbin/route6d/misc/cksum.c b/usr.sbin/route6d/misc/cksum.c index 200eecceef7d..b943018f851b 100644 --- a/usr.sbin/route6d/misc/cksum.c +++ b/usr.sbin/route6d/misc/cksum.c @@ -27,8 +27,6 @@ * 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. - * - * $FreeBSD$ */ #include <stdio.h> diff --git a/usr.sbin/route6d/route6d.8 b/usr.sbin/route6d/route6d.8 index 2dfd91c53d4b..e9ad3266ba26 100644 --- a/usr.sbin/route6d/route6d.8 +++ b/usr.sbin/route6d/route6d.8 @@ -14,14 +14,17 @@ .\" LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR .\" A PARTICULAR PURPOSE. .\" -.\" $FreeBSD$ -.\" -.Dd November 18, 2012 +.Dd May 20, 2025 .Dt ROUTE6D 8 .Os .Sh NAME .Nm route6d .Nd RIP6 Routing Daemon +.Sh DEPRECATION NOTICE +The +.Nm +utility is deprecated and will be removed in +.Fx 16.0 . .Sh SYNOPSIS .Nm .Op Fl adDhlnqsS diff --git a/usr.sbin/route6d/route6d.c b/usr.sbin/route6d/route6d.c index 7d873d4dfa40..17b985fac2c0 100644 --- a/usr.sbin/route6d/route6d.c +++ b/usr.sbin/route6d/route6d.c @@ -1,4 +1,3 @@ -/* $FreeBSD$ */ /* $KAME: route6d.c,v 1.104 2003/10/31 00:30:20 itojun Exp $ */ /*- @@ -32,9 +31,6 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char _rcsid[] = "$KAME: route6d.c,v 1.104 2003/10/31 00:30:20 itojun Exp $"; -#endif #include <sys/param.h> #include <sys/file.h> @@ -101,7 +97,7 @@ struct ifc { /* Configuration of an interface */ }; static TAILQ_HEAD(, ifc) ifc_head = TAILQ_HEAD_INITIALIZER(ifc_head); -struct ifac { /* Adddress associated to an interface */ +struct ifac { /* Address associated to an interface */ TAILQ_ENTRY(ifac) ifac_next; struct ifc *ifac_ifc; /* back pointer */ @@ -1690,7 +1686,7 @@ ifremove(int ifindex) /* * Receive and process routing messages. - * Update interface information as necesssary. + * Update interface information as necessary. */ static void rtrecv(void) diff --git a/usr.sbin/route6d/route6d.h b/usr.sbin/route6d/route6d.h index d556799c7177..3193514ddeb3 100644 --- a/usr.sbin/route6d/route6d.h +++ b/usr.sbin/route6d/route6d.h @@ -1,4 +1,3 @@ -/* $FreeBSD$ */ /* $KAME: route6d.h,v 1.8 2003/05/28 09:11:13 itojun Exp $ */ /*- |