[Midnightbsd-cvs] src [10866] trunk/usr.sbin/IPXrouted: tag

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Wed Jun 13 18:33:39 EDT 2018


Revision: 10866
          http://svnweb.midnightbsd.org/src/?rev=10866
Author:   laffer1
Date:     2018-06-13 18:33:39 -0400 (Wed, 13 Jun 2018)
Log Message:
-----------
tag

Modified Paths:
--------------
    trunk/usr.sbin/IPXrouted/IPXrouted.8
    trunk/usr.sbin/IPXrouted/Makefile
    trunk/usr.sbin/IPXrouted/af.c
    trunk/usr.sbin/IPXrouted/af.h
    trunk/usr.sbin/IPXrouted/defs.h
    trunk/usr.sbin/IPXrouted/if.c
    trunk/usr.sbin/IPXrouted/input.c
    trunk/usr.sbin/IPXrouted/interface.h
    trunk/usr.sbin/IPXrouted/main.c
    trunk/usr.sbin/IPXrouted/output.c
    trunk/usr.sbin/IPXrouted/protocol.h
    trunk/usr.sbin/IPXrouted/sap.h
    trunk/usr.sbin/IPXrouted/sap_input.c
    trunk/usr.sbin/IPXrouted/sap_output.c
    trunk/usr.sbin/IPXrouted/sap_tables.c
    trunk/usr.sbin/IPXrouted/startup.c
    trunk/usr.sbin/IPXrouted/table.h
    trunk/usr.sbin/IPXrouted/tables.c
    trunk/usr.sbin/IPXrouted/timer.c
    trunk/usr.sbin/IPXrouted/trace.c
    trunk/usr.sbin/IPXrouted/trace.h

Property Changed:
----------------
    trunk/usr.sbin/IPXrouted/IPXrouted.8

Modified: trunk/usr.sbin/IPXrouted/IPXrouted.8
===================================================================
--- trunk/usr.sbin/IPXrouted/IPXrouted.8	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/IPXrouted.8	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+.\" $MidnightBSD$
 .\" Copyright (c) 1986, 1991, 1993
 .\"	The Regents of the University of California.  All rights reserved.
 .\"
@@ -31,7 +32,7 @@
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.\" $FreeBSD: src/usr.sbin/IPXrouted/IPXrouted.8,v 1.18 2004/07/02 23:12:38 ru Exp $
+.\" $FreeBSD: stable/10/usr.sbin/IPXrouted/IPXrouted.8 211936 2010-08-28 16:32:01Z brucec $
 .\"
 .Dd October 11, 1995
 .Dt IPXROUTED 8
@@ -198,7 +199,7 @@
 If an entry has not been updated for 3 minutes, the entry's metric
 is set to infinity and marked for deletion.
 Deletions are delayed
-an additional 60 seconds to insure the invalidation is propagated
+an additional 60 seconds to ensure the invalidation is propagated
 to other routers.
 .Pp
 Hosts acting as internetwork routers gratuitously supply their


Property changes on: trunk/usr.sbin/IPXrouted/IPXrouted.8
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/usr.sbin/IPXrouted/Makefile
===================================================================
--- trunk/usr.sbin/IPXrouted/Makefile	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/Makefile	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,5 +1,6 @@
+# $MidnightBSD$
 #	@(#)Makefile	8.1 (Berkeley) 6/5/93
-# $FreeBSD: src/usr.sbin/IPXrouted/Makefile,v 1.9 2004/02/04 10:18:05 ru Exp $
+# $FreeBSD: stable/10/usr.sbin/IPXrouted/Makefile 125430 2004-02-04 10:18:05Z ru $
 
 PROG=	IPXrouted
 MAN=	IPXrouted.8

Modified: trunk/usr.sbin/IPXrouted/af.c
===================================================================
--- trunk/usr.sbin/IPXrouted/af.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/af.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -31,7 +32,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/af.c,v 1.8 2004/08/07 04:19:37 imp Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/af.c 133248 2004-08-07 04:19:37Z imp $
  */
 
 #ifndef lint

Modified: trunk/usr.sbin/IPXrouted/af.h
===================================================================
--- trunk/usr.sbin/IPXrouted/af.h	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/af.h	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1983, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -36,7 +37,7 @@
  *
  *	@(#)af.h	8.1 (Berkeley) 6/5/93
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/af.h,v 1.4 1999/08/28 01:15:01 peter Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/af.h 50479 1999-08-28 01:35:59Z peter $
  */
 
 /*

Modified: trunk/usr.sbin/IPXrouted/defs.h
===================================================================
--- trunk/usr.sbin/IPXrouted/defs.h	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/defs.h	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1983, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -34,7 +35,7 @@
  *
  *	@(#)defs.h	8.1 (Berkeley) 6/5/93
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/defs.h,v 1.9 2002/02/18 20:35:26 mike Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/defs.h 90868 2002-02-18 20:35:27Z mike $
  */
 
 #include <sys/types.h>

Modified: trunk/usr.sbin/IPXrouted/if.c
===================================================================
--- trunk/usr.sbin/IPXrouted/if.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/if.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1983, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -34,7 +35,7 @@
  *
  * static char sccsid[] = "@(#)if.c	5.1 (Berkeley) 6/4/85"; (routed/if.c)
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/if.c,v 1.6 2003/11/15 17:10:56 trhodes Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/if.c 122760 2003-11-15 17:10:56Z trhodes $
  */
 
 #ifndef lint

Modified: trunk/usr.sbin/IPXrouted/input.c
===================================================================
--- trunk/usr.sbin/IPXrouted/input.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/input.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -35,7 +36,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/input.c,v 1.9 2003/11/15 17:10:56 trhodes Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/input.c 122760 2003-11-15 17:10:56Z trhodes $
  */
 
 #ifndef lint

Modified: trunk/usr.sbin/IPXrouted/interface.h
===================================================================
--- trunk/usr.sbin/IPXrouted/interface.h	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/interface.h	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1983, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -34,7 +35,7 @@
  *
  *	@(#)interface.h	8.1 (Berkeley) 6/5/93
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/interface.h,v 1.4 1999/08/28 01:15:02 peter Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/interface.h 50479 1999-08-28 01:35:59Z peter $
  */
 
 /*

Modified: trunk/usr.sbin/IPXrouted/main.c
===================================================================
--- trunk/usr.sbin/IPXrouted/main.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/main.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -35,7 +36,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/main.c,v 1.13 2006/09/21 02:01:46 kan Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/main.c 162492 2006-09-21 02:01:46Z kan $
  */
 
 #ifndef lint

Modified: trunk/usr.sbin/IPXrouted/output.c
===================================================================
--- trunk/usr.sbin/IPXrouted/output.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/output.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -35,7 +36,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/output.c,v 1.9 2003/11/15 17:10:56 trhodes Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/output.c 122760 2003-11-15 17:10:56Z trhodes $
  */
 
 #ifndef lint

Modified: trunk/usr.sbin/IPXrouted/protocol.h
===================================================================
--- trunk/usr.sbin/IPXrouted/protocol.h	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/protocol.h	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -37,7 +38,7 @@
  *
  *	@(#)protocol.h	8.1 (Berkeley) 6/5/93
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/protocol.h,v 1.5 1999/08/28 01:15:03 peter Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/protocol.h 50479 1999-08-28 01:35:59Z peter $
  */
 
 /*

Modified: trunk/usr.sbin/IPXrouted/sap.h
===================================================================
--- trunk/usr.sbin/IPXrouted/sap.h	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/sap.h	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1995 John Hay.  All rights reserved.
  *
@@ -28,7 +29,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/sap.h,v 1.7 1999/08/28 01:15:03 peter Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/sap.h 50479 1999-08-28 01:35:59Z peter $
  */
 #ifndef _SAP_H_
 #define _SAP_H_

Modified: trunk/usr.sbin/IPXrouted/sap_input.c
===================================================================
--- trunk/usr.sbin/IPXrouted/sap_input.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/sap_input.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1995 John Hay.  All rights reserved.
  *
@@ -28,7 +29,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/sap_input.c,v 1.7 1999/08/28 01:15:04 peter Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/sap_input.c 228990 2011-12-30 10:58:14Z uqs $
  */
 
 /*
@@ -136,7 +137,7 @@
 			 * The idea here is that if the hop count is more
 			 * than INFINITY it is bogus and should be discarded.
 			 * If it is equal to INFINITY it is a message to say
-			 * that a service went down. If we don't allready
+			 * that a service went down. If we don't already
 			 * have it in our tables discard it. Otherwise
 			 * update our table and set the timer to EXPIRE_TIME
 			 * so that it is removed next time we go through the

Modified: trunk/usr.sbin/IPXrouted/sap_output.c
===================================================================
--- trunk/usr.sbin/IPXrouted/sap_output.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/sap_output.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1995 John Hay.  All rights reserved.
  *
@@ -28,7 +29,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/sap_output.c,v 1.10 2002/05/30 21:49:15 wollman Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/sap_output.c 97638 2002-05-30 21:49:15Z wollman $
  */
 
 /*

Modified: trunk/usr.sbin/IPXrouted/sap_tables.c
===================================================================
--- trunk/usr.sbin/IPXrouted/sap_tables.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/sap_tables.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1995 John Hay.  All rights reserved.
  *
@@ -28,7 +29,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/sap_tables.c,v 1.9 2003/11/15 17:10:56 trhodes Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/sap_tables.c 228990 2011-12-30 10:58:14Z uqs $
  */
 
 #include "defs.h"
@@ -178,7 +179,7 @@
 
 /*
  * Change an existing SAP entry. If a clone exist for the old one,
- * check if it is cheaper. If it is change tothe clone, otherwise
+ * check if it is cheaper. If it is change to the clone, otherwise
  * delete all the clones.
  */
 void

Modified: trunk/usr.sbin/IPXrouted/startup.c
===================================================================
--- trunk/usr.sbin/IPXrouted/startup.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/startup.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -35,7 +36,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/startup.c,v 1.11 2004/04/13 11:24:43 luigi Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/startup.c 128186 2004-04-13 11:24:43Z luigi $
  */
 
 #ifndef lint

Modified: trunk/usr.sbin/IPXrouted/table.h
===================================================================
--- trunk/usr.sbin/IPXrouted/table.h	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/table.h	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1983, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -36,7 +37,7 @@
  *
  *	@(#)table.h	8.1 (Berkeley) 6/5/93
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/table.h,v 1.6 1999/08/28 01:15:05 peter Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/table.h 264298 2014-04-09 11:10:44Z glebius $
  */
 
 /*
@@ -54,15 +55,10 @@
 	struct	rt_entry *rt_back;
 };
 
-#ifdef RTM_ADD
-#define rtentry ortentry
-#endif
-
 struct rt_entry {
 	struct	rt_entry *rt_forw;
 	struct	rt_entry *rt_back;
 	union {
-		struct	rtentry rtu_rt;
 		struct  rtuentry {
 			u_long	rtu_hash;
 			struct	sockaddr rtu_dst;

Modified: trunk/usr.sbin/IPXrouted/tables.c
===================================================================
--- trunk/usr.sbin/IPXrouted/tables.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/tables.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -32,7 +33,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/tables.c,v 1.8 2003/11/15 17:10:56 trhodes Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/tables.c 231817 2012-02-16 05:17:06Z eadler $
  */
 
 #ifndef lint
@@ -172,7 +173,6 @@
 {
 	struct afhash h;
 	register struct rt_entry *rt;
-	struct rthash *rh;
 	int af = dst->sa_family, flags;
 	u_int hash;
 
@@ -183,7 +183,6 @@
 	(*afswitch[af].af_hash)(dst, &h);
 	flags = (*afswitch[af].af_ishost)(dst) ? RTF_HOST : 0;
 	hash = h.afh_nethash;
-	rh = &nethash[hash & ROUTEHASHMASK];
 	rt = (struct rt_entry *)malloc(sizeof (*rt));
 	if (rt == 0)
 		return;
@@ -213,7 +212,6 @@
     short ticks)
 {
 	int doioctl = 0, metricchanged = 0;
-	struct rtuentry oldroute;
 
 	FIXLEN(gate);
 	/*
@@ -281,7 +279,6 @@
 	if (doioctl || metricchanged) {
 		TRACE_ACTION("CHANGE FROM", rt);
 		if (doioctl) {
-			oldroute = rt->rt_rt;
 			rt->rt_router = *gate;
 		}
 		rt->rt_metric = metric;

Modified: trunk/usr.sbin/IPXrouted/timer.c
===================================================================
--- trunk/usr.sbin/IPXrouted/timer.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/timer.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -35,7 +36,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/timer.c,v 1.6 2003/11/15 17:10:56 trhodes Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/timer.c 122760 2003-11-15 17:10:56Z trhodes $
  */
 
 #ifndef lint

Modified: trunk/usr.sbin/IPXrouted/trace.c
===================================================================
--- trunk/usr.sbin/IPXrouted/trace.c	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/trace.c	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1985, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -41,7 +42,7 @@
 static char sccsid[] = "@(#)trace.c	8.1 (Berkeley) 6/5/93";
 #endif
 static const char rcsid[] =
-  "$FreeBSD: src/usr.sbin/IPXrouted/trace.c,v 1.11 2005/08/05 07:17:23 stefanf Exp $";
+  "$FreeBSD: stable/10/usr.sbin/IPXrouted/trace.c 173709 2007-11-17 23:09:39Z jb $";
 #endif /* not lint */
 
 /*

Modified: trunk/usr.sbin/IPXrouted/trace.h
===================================================================
--- trunk/usr.sbin/IPXrouted/trace.h	2018-06-13 22:33:13 UTC (rev 10865)
+++ trunk/usr.sbin/IPXrouted/trace.h	2018-06-13 22:33:39 UTC (rev 10866)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1983, 1993
  *	The Regents of the University of California.  All rights reserved.
@@ -37,7 +38,7 @@
  *
  *	@(#)trace.h	8.1 (Berkeley) 6/5/93
  *
- * $FreeBSD: src/usr.sbin/IPXrouted/trace.h,v 1.7 1999/08/28 01:15:07 peter Exp $
+ * $FreeBSD: stable/10/usr.sbin/IPXrouted/trace.h 50479 1999-08-28 01:35:59Z peter $
  */
 
 /*



More information about the Midnightbsd-cvs mailing list