summaryrefslogtreecommitdiff
path: root/usr.bin/netstat
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-26 05:44:45 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-26 05:44:45 +0000
commitf78c2ff8497d138d7dcd5ffdd1762b8506ac023a (patch)
treed866f71b8ad5a1e57f31fa90b31e9c70af075787 /usr.bin/netstat
parent79e97129ab796ff93029b3a8d0d89519754bfece (diff)
rcsid
Diffstat (limited to 'usr.bin/netstat')
-rw-r--r--usr.bin/netstat/Makefile2
-rw-r--r--usr.bin/netstat/if.c3
-rw-r--r--usr.bin/netstat/inet.c3
-rw-r--r--usr.bin/netstat/iso.c3
-rw-r--r--usr.bin/netstat/main.c3
-rw-r--r--usr.bin/netstat/mbuf.c3
-rw-r--r--usr.bin/netstat/mroute.c1
-rw-r--r--usr.bin/netstat/netstat.11
-rw-r--r--usr.bin/netstat/netstat.h1
-rw-r--r--usr.bin/netstat/ns.c3
-rw-r--r--usr.bin/netstat/route.c3
-rw-r--r--usr.bin/netstat/unix.c3
12 files changed, 20 insertions, 9 deletions
diff --git a/usr.bin/netstat/Makefile b/usr.bin/netstat/Makefile
index b5fc9c34add..18bd05cd87a 100644
--- a/usr.bin/netstat/Makefile
+++ b/usr.bin/netstat/Makefile
@@ -1,5 +1,5 @@
+# $OpenBSD: Makefile,v 1.2 1996/06/26 05:37:19 deraadt Exp $
# $NetBSD: Makefile,v 1.11 1995/10/03 21:42:34 thorpej Exp $
-# from: @(#)Makefile 8.1 (Berkeley) 6/12/93
PROG= netstat
SRCS= if.c inet.c iso.c main.c mbuf.c mroute.c ns.c route.c \
diff --git a/usr.bin/netstat/if.c b/usr.bin/netstat/if.c
index 88868675e6d..3bf1b1f0cdf 100644
--- a/usr.bin/netstat/if.c
+++ b/usr.bin/netstat/if.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: if.c,v 1.7 1996/06/26 05:37:20 deraadt Exp $ */
/* $NetBSD: if.c,v 1.16.4.2 1996/06/07 21:46:46 thorpej Exp $ */
/*
@@ -37,7 +38,7 @@
#if 0
static char sccsid[] = "from: @(#)if.c 8.2 (Berkeley) 2/21/94";
#else
-static char *rcsid = "$NetBSD: if.c,v 1.16.4.2 1996/06/07 21:46:46 thorpej Exp $";
+static char *rcsid = "$OpenBSD: if.c,v 1.7 1996/06/26 05:37:20 deraadt Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c
index f1d4151ff88..bc33664379a 100644
--- a/usr.bin/netstat/inet.c
+++ b/usr.bin/netstat/inet.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: inet.c,v 1.3 1996/06/26 05:37:21 deraadt Exp $ */
/* $NetBSD: inet.c,v 1.14 1995/10/03 21:42:37 thorpej Exp $ */
/*
@@ -37,7 +38,7 @@
#if 0
static char sccsid[] = "from: @(#)inet.c 8.4 (Berkeley) 4/20/94";
#else
-static char *rcsid = "$NetBSD: inet.c,v 1.14 1995/10/03 21:42:37 thorpej Exp $";
+static char *rcsid = "$OpenBSD: inet.c,v 1.3 1996/06/26 05:37:21 deraadt Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/netstat/iso.c b/usr.bin/netstat/iso.c
index 32fdce09fb3..7e0a76bd907 100644
--- a/usr.bin/netstat/iso.c
+++ b/usr.bin/netstat/iso.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: iso.c,v 1.2 1996/06/26 05:37:21 deraadt Exp $ */
/* $NetBSD: iso.c,v 1.12 1995/10/03 21:42:38 thorpej Exp $ */
/*
@@ -37,7 +38,7 @@
#if 0
static char sccsid[] = "from: @(#)iso.c 8.1 (Berkeley) 6/6/93";
#else
-static char *rcsid = "$NetBSD: iso.c,v 1.12 1995/10/03 21:42:38 thorpej Exp $";
+static char *rcsid = "$OpenBSD: iso.c,v 1.2 1996/06/26 05:37:21 deraadt Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c
index 2798c932a94..1f27a1a2f9d 100644
--- a/usr.bin/netstat/main.c
+++ b/usr.bin/netstat/main.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: main.c,v 1.3 1996/06/26 05:37:22 deraadt Exp $ */
/* $NetBSD: main.c,v 1.9 1996/05/07 02:55:02 thorpej Exp $ */
/*
@@ -43,7 +44,7 @@ char copyright[] =
#if 0
static char sccsid[] = "from: @(#)main.c 8.4 (Berkeley) 3/1/94";
#else
-static char *rcsid = "$NetBSD: main.c,v 1.9 1996/05/07 02:55:02 thorpej Exp $";
+static char *rcsid = "$OpenBSD: main.c,v 1.3 1996/06/26 05:37:22 deraadt Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/netstat/mbuf.c b/usr.bin/netstat/mbuf.c
index 0f0067031a9..d91437120be 100644
--- a/usr.bin/netstat/mbuf.c
+++ b/usr.bin/netstat/mbuf.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: mbuf.c,v 1.3 1996/06/26 05:37:23 deraadt Exp $ */
/* $NetBSD: mbuf.c,v 1.9 1996/05/07 02:55:03 thorpej Exp $ */
/*
@@ -37,7 +38,7 @@
#if 0
static char sccsid[] = "from: @(#)mbuf.c 8.1 (Berkeley) 6/6/93";
#else
-static char *rcsid = "$NetBSD: mbuf.c,v 1.9 1996/05/07 02:55:03 thorpej Exp $";
+static char *rcsid = "$OpenBSD: mbuf.c,v 1.3 1996/06/26 05:37:23 deraadt Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/netstat/mroute.c b/usr.bin/netstat/mroute.c
index 1d00b3dc6db..676b5aef814 100644
--- a/usr.bin/netstat/mroute.c
+++ b/usr.bin/netstat/mroute.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: mroute.c,v 1.3 1996/06/26 05:37:23 deraadt Exp $ */
/* $NetBSD: mroute.c,v 1.10 1996/05/11 13:51:27 mycroft Exp $ */
/*
diff --git a/usr.bin/netstat/netstat.1 b/usr.bin/netstat/netstat.1
index 9fd19213077..8fe159b83a1 100644
--- a/usr.bin/netstat/netstat.1
+++ b/usr.bin/netstat/netstat.1
@@ -1,3 +1,4 @@
+.\" $OpenBSD: netstat.1,v 1.2 1996/06/26 05:37:24 deraadt Exp $
.\" $NetBSD: netstat.1,v 1.11 1995/10/03 21:42:43 thorpej Exp $
.\"
.\" Copyright (c) 1983, 1990, 1992, 1993
diff --git a/usr.bin/netstat/netstat.h b/usr.bin/netstat/netstat.h
index 085203893da..d3f8a8fa804 100644
--- a/usr.bin/netstat/netstat.h
+++ b/usr.bin/netstat/netstat.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: netstat.h,v 1.3 1996/06/26 05:37:24 deraadt Exp $ */
/* $NetBSD: netstat.h,v 1.6 1996/05/07 02:55:05 thorpej Exp $ */
/*
diff --git a/usr.bin/netstat/ns.c b/usr.bin/netstat/ns.c
index d9c8cf5a52d..c46cf16e404 100644
--- a/usr.bin/netstat/ns.c
+++ b/usr.bin/netstat/ns.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: ns.c,v 1.2 1996/06/26 05:37:25 deraadt Exp $ */
/* $NetBSD: ns.c,v 1.8 1995/10/03 21:42:46 thorpej Exp $ */
/*
@@ -37,7 +38,7 @@
#if 0
static char sccsid[] = "from: @(#)ns.c 8.1 (Berkeley) 6/6/93";
#else
-static char *rcsid = "$NetBSD: ns.c,v 1.8 1995/10/03 21:42:46 thorpej Exp $";
+static char *rcsid = "$OpenBSD: ns.c,v 1.2 1996/06/26 05:37:25 deraadt Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/netstat/route.c b/usr.bin/netstat/route.c
index d7efc392f86..e65a15329c6 100644
--- a/usr.bin/netstat/route.c
+++ b/usr.bin/netstat/route.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: route.c,v 1.3 1996/06/26 05:37:26 deraadt Exp $ */
/* $NetBSD: route.c,v 1.15 1996/05/07 02:55:06 thorpej Exp $ */
/*
@@ -37,7 +38,7 @@
#if 0
static char sccsid[] = "from: @(#)route.c 8.3 (Berkeley) 3/9/94";
#else
-static char *rcsid = "$NetBSD: route.c,v 1.15 1996/05/07 02:55:06 thorpej Exp $";
+static char *rcsid = "$OpenBSD: route.c,v 1.3 1996/06/26 05:37:26 deraadt Exp $";
#endif
#endif /* not lint */
diff --git a/usr.bin/netstat/unix.c b/usr.bin/netstat/unix.c
index 6b6388b5b4e..9726aa6fe8c 100644
--- a/usr.bin/netstat/unix.c
+++ b/usr.bin/netstat/unix.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: unix.c,v 1.2 1996/06/26 05:37:26 deraadt Exp $ */
/* $NetBSD: unix.c,v 1.13 1995/10/03 21:42:48 thorpej Exp $ */
/*-
@@ -37,7 +38,7 @@
#if 0
static char sccsid[] = "from: @(#)unix.c 8.1 (Berkeley) 6/6/93";
#else
-static char *rcsid = "$NetBSD: unix.c,v 1.13 1995/10/03 21:42:48 thorpej Exp $";
+static char *rcsid = "$OpenBSD: unix.c,v 1.2 1996/06/26 05:37:26 deraadt Exp $";
#endif
#endif /* not lint */