summaryrefslogtreecommitdiff
path: root/usr.bin/netstat
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/netstat')
-rw-r--r--usr.bin/netstat/Makefile2
-rw-r--r--usr.bin/netstat/atalk.c2
-rw-r--r--usr.bin/netstat/if.c2
-rw-r--r--usr.bin/netstat/inet.c2
-rw-r--r--usr.bin/netstat/inet6.c2
-rw-r--r--usr.bin/netstat/ipx.c2
-rw-r--r--usr.bin/netstat/iso.c2
-rw-r--r--usr.bin/netstat/main.c2
-rw-r--r--usr.bin/netstat/mbuf.c2
-rw-r--r--usr.bin/netstat/mroute.c2
-rw-r--r--usr.bin/netstat/mroute6.c2
-rw-r--r--usr.bin/netstat/netgraph.c2
-rw-r--r--usr.bin/netstat/netstat.12
-rw-r--r--usr.bin/netstat/netstat.h2
-rw-r--r--usr.bin/netstat/route.c2
-rw-r--r--usr.bin/netstat/unix.c2
16 files changed, 16 insertions, 16 deletions
diff --git a/usr.bin/netstat/Makefile b/usr.bin/netstat/Makefile
index f52e79269815..07a5470d800b 100644
--- a/usr.bin/netstat/Makefile
+++ b/usr.bin/netstat/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: src/usr.bin/netstat/Makefile,v 1.14 2000/01/28 05:10:54 shin Exp $
# @(#)Makefile 8.1 (Berkeley) 6/12/93
PROG= netstat
diff --git a/usr.bin/netstat/atalk.c b/usr.bin/netstat/atalk.c
index b8071a186da9..efa87e3bd0e8 100644
--- a/usr.bin/netstat/atalk.c
+++ b/usr.bin/netstat/atalk.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)atalk.c 1.1 (Whistle) 6/6/96";
*/
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/netstat/atalk.c,v 1.13 1999/10/21 07:08:55 julian Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.bin/netstat/if.c b/usr.bin/netstat/if.c
index f72bf6a782a7..66ae10478b2a 100644
--- a/usr.bin/netstat/if.c
+++ b/usr.bin/netstat/if.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)if.c 8.3 (Berkeley) 4/28/95";
*/
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/netstat/if.c,v 1.32 2000/01/03 17:48:36 jkh Exp $";
#endif /* not lint */
#include <sys/types.h>
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c
index ac09c4b66a37..6dd07f551567 100644
--- a/usr.bin/netstat/inet.c
+++ b/usr.bin/netstat/inet.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)inet.c 8.5 (Berkeley) 5/24/95";
*/
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/netstat/inet.c,v 1.37 2000/01/07 05:17:08 shin Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.bin/netstat/inet6.c b/usr.bin/netstat/inet6.c
index c1c65f289b1f..51997aa70fdf 100644
--- a/usr.bin/netstat/inet6.c
+++ b/usr.bin/netstat/inet6.c
@@ -31,7 +31,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/netstat/inet6.c,v 1.3 2000/01/07 05:17:08 shin Exp $
*/
#ifndef lint
diff --git a/usr.bin/netstat/ipx.c b/usr.bin/netstat/ipx.c
index 973c4cff0c93..b34f0d245527 100644
--- a/usr.bin/netstat/ipx.c
+++ b/usr.bin/netstat/ipx.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)ns.c 8.1 (Berkeley) 6/6/93";
*/
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/netstat/ipx.c,v 1.13 1999/10/21 07:08:56 julian Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.bin/netstat/iso.c b/usr.bin/netstat/iso.c
index 1cec3b2fc811..97818a7fe4db 100644
--- a/usr.bin/netstat/iso.c
+++ b/usr.bin/netstat/iso.c
@@ -36,7 +36,7 @@ static char sccsid[] = "@(#)iso.c 8.1 (Berkeley) 6/6/93";
#endif /* not lint */
/*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/netstat/iso.c,v 1.4 1999/09/06 07:34:27 peter Exp $
*/
/*******************************************************************************
Copyright IBM Corporation 1987
diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c
index 03f1fb110303..5a02b63d285e 100644
--- a/usr.bin/netstat/main.c
+++ b/usr.bin/netstat/main.c
@@ -42,7 +42,7 @@ char const copyright[] =
static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 3/1/94";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/netstat/main.c,v 1.34 2000/03/11 20:14:08 shin Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.bin/netstat/mbuf.c b/usr.bin/netstat/mbuf.c
index a761c2e270bd..710d0a98dc73 100644
--- a/usr.bin/netstat/mbuf.c
+++ b/usr.bin/netstat/mbuf.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)mbuf.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/netstat/mbuf.c,v 1.17 1999/12/28 06:38:37 msmith Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.bin/netstat/mroute.c b/usr.bin/netstat/mroute.c
index 74706c7eb0fe..aa61cfb3033c 100644
--- a/usr.bin/netstat/mroute.c
+++ b/usr.bin/netstat/mroute.c
@@ -39,7 +39,7 @@
#ifndef lint
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/netstat/mroute.c,v 1.11 2000/01/28 05:10:55 shin Exp $";
#endif /* not lint */
/*
diff --git a/usr.bin/netstat/mroute6.c b/usr.bin/netstat/mroute6.c
index 3730a9e49ee9..fbad8b39b7ba 100644
--- a/usr.bin/netstat/mroute6.c
+++ b/usr.bin/netstat/mroute6.c
@@ -64,7 +64,7 @@
* SUCH DAMAGE.
*
* @(#)mroute.c 8.2 (Berkeley) 4/28/95
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/netstat/mroute6.c,v 1.1 2000/01/28 05:10:56 shin Exp $
*/
#include <sys/param.h>
diff --git a/usr.bin/netstat/netgraph.c b/usr.bin/netstat/netgraph.c
index 82a2d87c37e4..6a023a3075a0 100644
--- a/usr.bin/netstat/netgraph.c
+++ b/usr.bin/netstat/netgraph.c
@@ -31,7 +31,7 @@
* THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/netstat/netgraph.c,v 1.3 1999/10/24 02:58:39 dillon Exp $
*/
#ifndef lint
diff --git a/usr.bin/netstat/netstat.1 b/usr.bin/netstat/netstat.1
index c86b262d68d5..6d0f48fa2552 100644
--- a/usr.bin/netstat/netstat.1
+++ b/usr.bin/netstat/netstat.1
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)netstat.1 8.8 (Berkeley) 4/18/94
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.bin/netstat/netstat.1,v 1.22 2000/03/11 14:33:13 shin Exp $
.\"
.Dd April 18, 1994
.Dt NETSTAT 1
diff --git a/usr.bin/netstat/netstat.h b/usr.bin/netstat/netstat.h
index 3b435c2f6ae6..f544d6fa89f3 100644
--- a/usr.bin/netstat/netstat.h
+++ b/usr.bin/netstat/netstat.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)netstat.h 8.2 (Berkeley) 1/4/94
- * $FreeBSD$
+ * $FreeBSD: src/usr.bin/netstat/netstat.h,v 1.16 2000/01/28 05:10:56 shin Exp $
*/
#include <sys/cdefs.h>
diff --git a/usr.bin/netstat/route.c b/usr.bin/netstat/route.c
index 90438cb20236..19404d5bc583 100644
--- a/usr.bin/netstat/route.c
+++ b/usr.bin/netstat/route.c
@@ -36,7 +36,7 @@
static char sccsid[] = "From: @(#)route.c 8.6 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/netstat/route.c,v 1.41 2000/01/07 19:56:57 rgrimes Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.bin/netstat/unix.c b/usr.bin/netstat/unix.c
index 345e28a4ee41..2aac0713d1de 100644
--- a/usr.bin/netstat/unix.c
+++ b/usr.bin/netstat/unix.c
@@ -36,7 +36,7 @@
static char sccsid[] = "@(#)unix.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/usr.bin/netstat/unix.c,v 1.12 1999/08/28 01:04:31 peter Exp $";
#endif /* not lint */
/*