summaryrefslogtreecommitdiff
path: root/sys/netipx
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2005-01-07 01:45:51 +0000
committerWarner Losh <imp@FreeBSD.org>2005-01-07 01:45:51 +0000
commitc398230b64aea809cb7c5cea8db580af7097920c (patch)
treeeb31ac736ac91e1175c700bbbf60cf1c022cf331 /sys/netipx
parent610055c9e2703bbfa36be9b6af27493748a30967 (diff)
Notes
Diffstat (limited to 'sys/netipx')
-rw-r--r--sys/netipx/README3
-rw-r--r--sys/netipx/ipx.c2
-rw-r--r--sys/netipx/ipx.h2
-rw-r--r--sys/netipx/ipx_cksum.c2
-rw-r--r--sys/netipx/ipx_if.h2
-rw-r--r--sys/netipx/ipx_input.c2
-rw-r--r--sys/netipx/ipx_ip.c2
-rw-r--r--sys/netipx/ipx_ip.h2
-rw-r--r--sys/netipx/ipx_outputfl.c2
-rw-r--r--sys/netipx/ipx_pcb.c2
-rw-r--r--sys/netipx/ipx_pcb.h2
-rw-r--r--sys/netipx/ipx_proto.c2
-rw-r--r--sys/netipx/ipx_usrreq.c2
-rw-r--r--sys/netipx/ipx_var.h2
-rw-r--r--sys/netipx/spx.h2
-rw-r--r--sys/netipx/spx_debug.c2
-rw-r--r--sys/netipx/spx_debug.h2
-rw-r--r--sys/netipx/spx_timer.h2
-rw-r--r--sys/netipx/spx_usrreq.c2
-rw-r--r--sys/netipx/spx_var.h2
20 files changed, 22 insertions, 19 deletions
diff --git a/sys/netipx/README b/sys/netipx/README
index e1a9f562cd95..102f5281ab66 100644
--- a/sys/netipx/README
+++ b/sys/netipx/README
@@ -15,6 +15,7 @@ Some Address
jhay@mikom.csir.co.za
--- Copyright Information ---
+/*-
Copyright (c) 1984, 1985, 1986, 1987, 1993
The Regents of the University of California. All rights reserved.
@@ -22,3 +23,5 @@ The Regents of the University of California. All rights reserved.
Modifications Copyright (c) 2004, Robert N. M. Watson
Modifications Copyright (c) 1995, Mike Mitchell
Modifications Copyright (c) 1995, John Hay
+
+*/
diff --git a/sys/netipx/ipx.c b/sys/netipx/ipx.c
index 337ffe388152..778c4ce9c86c 100644
--- a/sys/netipx/ipx.c
+++ b/sys/netipx/ipx.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/ipx.h b/sys/netipx/ipx.h
index 83f2a9bcb4cd..dc97d097c0e9 100644
--- a/sys/netipx/ipx.h
+++ b/sys/netipx/ipx.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/ipx_cksum.c b/sys/netipx/ipx_cksum.c
index c6a3e4f11d85..81e9c654d5a5 100644
--- a/sys/netipx/ipx_cksum.c
+++ b/sys/netipx/ipx_cksum.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1982, 1992, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/ipx_if.h b/sys/netipx/ipx_if.h
index 8bd533700107..88d979bf49a9 100644
--- a/sys/netipx/ipx_if.h
+++ b/sys/netipx/ipx_if.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/ipx_input.c b/sys/netipx/ipx_input.c
index f518db33d6a3..ad8888536211 100644
--- a/sys/netipx/ipx_input.c
+++ b/sys/netipx/ipx_input.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 2004 Robert N. M. Watson
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
diff --git a/sys/netipx/ipx_ip.c b/sys/netipx/ipx_ip.c
index 1344e2019925..4aa432b461cd 100644
--- a/sys/netipx/ipx_ip.c
+++ b/sys/netipx/ipx_ip.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/ipx_ip.h b/sys/netipx/ipx_ip.h
index 2eb3c8e23c87..23e447062875 100644
--- a/sys/netipx/ipx_ip.h
+++ b/sys/netipx/ipx_ip.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/ipx_outputfl.c b/sys/netipx/ipx_outputfl.c
index 630f792a4107..b8fa39a1296b 100644
--- a/sys/netipx/ipx_outputfl.c
+++ b/sys/netipx/ipx_outputfl.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/ipx_pcb.c b/sys/netipx/ipx_pcb.c
index 1c7edeb93c72..81b8c0d45dbf 100644
--- a/sys/netipx/ipx_pcb.c
+++ b/sys/netipx/ipx_pcb.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 2004 Robert N. M. Watson
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
diff --git a/sys/netipx/ipx_pcb.h b/sys/netipx/ipx_pcb.h
index c7719a1b5295..8164844b43c5 100644
--- a/sys/netipx/ipx_pcb.h
+++ b/sys/netipx/ipx_pcb.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 2004, Robert N. M. Watson
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
diff --git a/sys/netipx/ipx_proto.c b/sys/netipx/ipx_proto.c
index 22b8027f9830..8f16aae2998d 100644
--- a/sys/netipx/ipx_proto.c
+++ b/sys/netipx/ipx_proto.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/ipx_usrreq.c b/sys/netipx/ipx_usrreq.c
index 5e5e4f424730..508e0aa1861e 100644
--- a/sys/netipx/ipx_usrreq.c
+++ b/sys/netipx/ipx_usrreq.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 2004-2005 Robert N. M. Watson
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
diff --git a/sys/netipx/ipx_var.h b/sys/netipx/ipx_var.h
index 33985d397635..c78536b5f28a 100644
--- a/sys/netipx/ipx_var.h
+++ b/sys/netipx/ipx_var.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/spx.h b/sys/netipx/spx.h
index a069b3cbd770..12fe93ed1a36 100644
--- a/sys/netipx/spx.h
+++ b/sys/netipx/spx.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/spx_debug.c b/sys/netipx/spx_debug.c
index a0a44e452e05..4e4aff81181b 100644
--- a/sys/netipx/spx_debug.c
+++ b/sys/netipx/spx_debug.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/spx_debug.h b/sys/netipx/spx_debug.h
index 31744eda80e1..9e5bf677e423 100644
--- a/sys/netipx/spx_debug.h
+++ b/sys/netipx/spx_debug.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/spx_timer.h b/sys/netipx/spx_timer.h
index 602200975fad..fd06efb796ae 100644
--- a/sys/netipx/spx_timer.h
+++ b/sys/netipx/spx_timer.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1982, 1986, 1988, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/netipx/spx_usrreq.c b/sys/netipx/spx_usrreq.c
index 68e352cbcdb2..0be4daa7f402 100644
--- a/sys/netipx/spx_usrreq.c
+++ b/sys/netipx/spx_usrreq.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 2004 Robert N. M. Watson
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
diff --git a/sys/netipx/spx_var.h b/sys/netipx/spx_var.h
index 7dfb783ee89d..1cf1229f42cc 100644
--- a/sys/netipx/spx_var.h
+++ b/sys/netipx/spx_var.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, Mike Mitchell
* Copyright (c) 1984, 1985, 1986, 1987, 1993
* The Regents of the University of California. All rights reserved.