summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/bpf.c2
-rw-r--r--sys/net/bpf.h2
-rw-r--r--sys/net/bpf_filter.c2
-rw-r--r--sys/net/bpfdesc.h2
-rw-r--r--sys/net/bridge.c2
-rw-r--r--sys/net/bridge.h2
-rw-r--r--sys/net/bsd_comp.c3
-rw-r--r--sys/net/fddi.h2
-rw-r--r--sys/net/if.c2
-rw-r--r--sys/net/if.h2
-rw-r--r--sys/net/if_arc.h2
-rw-r--r--sys/net/if_arcsubr.c2
-rw-r--r--sys/net/if_arp.h2
-rw-r--r--sys/net/if_atm.h2
-rw-r--r--sys/net/if_atmsubr.c2
-rw-r--r--sys/net/if_clone.c2
-rw-r--r--sys/net/if_clone.h2
-rw-r--r--sys/net/if_disc.c2
-rw-r--r--sys/net/if_dl.h2
-rw-r--r--sys/net/if_ethersubr.c2
-rw-r--r--sys/net/if_faith.c2
-rw-r--r--sys/net/if_fddisubr.c2
-rw-r--r--sys/net/if_fwsubr.c2
-rw-r--r--sys/net/if_gif.c2
-rw-r--r--sys/net/if_gif.h2
-rw-r--r--sys/net/if_gre.c2
-rw-r--r--sys/net/if_gre.h2
-rw-r--r--sys/net/if_iso88025subr.c2
-rw-r--r--sys/net/if_llc.h2
-rw-r--r--sys/net/if_loop.c2
-rw-r--r--sys/net/if_media.c2
-rw-r--r--sys/net/if_media.h2
-rw-r--r--sys/net/if_mib.c2
-rw-r--r--sys/net/if_mib.h2
-rw-r--r--sys/net/if_ppp.c4
-rw-r--r--sys/net/if_ppp.h4
-rw-r--r--sys/net/if_pppvar.h3
-rw-r--r--sys/net/if_sl.c2
-rw-r--r--sys/net/if_sppp.h3
-rw-r--r--sys/net/if_spppfr.c2
-rw-r--r--sys/net/if_spppsubr.c3
-rw-r--r--sys/net/if_stf.c2
-rw-r--r--sys/net/if_stf.h2
-rw-r--r--sys/net/if_tap.c2
-rw-r--r--sys/net/if_tap.h2
-rw-r--r--sys/net/if_tapvar.h2
-rw-r--r--sys/net/if_tun.c2
-rw-r--r--sys/net/if_tun.h2
-rw-r--r--sys/net/if_types.h2
-rw-r--r--sys/net/if_var.h2
-rw-r--r--sys/net/if_vlan.c2
-rw-r--r--sys/net/if_vlan_var.h2
-rw-r--r--sys/net/iso88025.h2
-rw-r--r--sys/net/net_osdep.h2
-rw-r--r--sys/net/netisr.h2
-rw-r--r--sys/net/pfil.c2
-rw-r--r--sys/net/pfil.h2
-rw-r--r--sys/net/pfkeyv2.h2
-rw-r--r--sys/net/ppp_comp.h4
-rw-r--r--sys/net/ppp_deflate.c2
-rw-r--r--sys/net/ppp_defs.h3
-rw-r--r--sys/net/ppp_tty.c3
-rw-r--r--sys/net/radix.c2
-rw-r--r--sys/net/radix.h2
-rw-r--r--sys/net/raw_cb.c2
-rw-r--r--sys/net/raw_cb.h2
-rw-r--r--sys/net/raw_usrreq.c2
-rw-r--r--sys/net/route.c2
-rw-r--r--sys/net/route.h2
-rw-r--r--sys/net/rtsock.c2
-rw-r--r--sys/net/slcompress.h3
-rw-r--r--sys/net/zlib.c3
-rw-r--r--sys/net/zlib.h7
73 files changed, 90 insertions, 75 deletions
diff --git a/sys/net/bpf.c b/sys/net/bpf.c
index debed79915e74..234e414c820e0 100644
--- a/sys/net/bpf.c
+++ b/sys/net/bpf.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1990, 1991, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/bpf.h b/sys/net/bpf.h
index f758412317082..0a952e44685d5 100644
--- a/sys/net/bpf.h
+++ b/sys/net/bpf.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1990, 1991, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/bpf_filter.c b/sys/net/bpf_filter.c
index cc1d11e3510b0..2754f4da04044 100644
--- a/sys/net/bpf_filter.c
+++ b/sys/net/bpf_filter.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1990, 1991, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/bpfdesc.h b/sys/net/bpfdesc.h
index 35619271961dd..5e0eca447bc88 100644
--- a/sys/net/bpfdesc.h
+++ b/sys/net/bpfdesc.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1990, 1991, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/bridge.c b/sys/net/bridge.c
index ddd0f0be9cfc9..b610b33cf03c2 100644
--- a/sys/net/bridge.c
+++ b/sys/net/bridge.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1998-2002 Luigi Rizzo
*
* Work partly supported by: Cisco Systems, Inc. - NSITE lab, RTP, NC
diff --git a/sys/net/bridge.h b/sys/net/bridge.h
index 666c65d425d84..7eb3b2d2ff310 100644
--- a/sys/net/bridge.h
+++ b/sys/net/bridge.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1998-2002 Luigi Rizzo
*
* Work partly supported by: Cisco Systems, Inc. - NSITE lab, RTP, NC
diff --git a/sys/net/bsd_comp.c b/sys/net/bsd_comp.c
index dd08a92895637..40aee8afb15a6 100644
--- a/sys/net/bsd_comp.c
+++ b/sys/net/bsd_comp.c
@@ -1,4 +1,5 @@
-/* Because this code is derived from the 4.3BSD compress source:
+/*-
+ * Because this code is derived from the 4.3BSD compress source:
*
*
* Copyright (c) 1985, 1986 The Regents of the University of California.
diff --git a/sys/net/fddi.h b/sys/net/fddi.h
index 541502779ab49..a488f29a0c4a7 100644
--- a/sys/net/fddi.h
+++ b/sys/net/fddi.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1982, 1986, 1993
* The Regents of the University of California. All rights reserved.
* Copyright (c) 1995 Matt Thomas (thomas@lkg.dec.com)
diff --git a/sys/net/if.c b/sys/net/if.c
index 3968345079b34..1dac78e3df55a 100644
--- a/sys/net/if.c
+++ b/sys/net/if.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1980, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if.h b/sys/net/if.h
index a31653e4efe86..0fa63d7a8adde 100644
--- a/sys/net/if.h
+++ b/sys/net/if.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1982, 1986, 1989, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_arc.h b/sys/net/if_arc.h
index db3cb985e6028..461f1b4c73334 100644
--- a/sys/net/if_arc.h
+++ b/sys/net/if_arc.h
@@ -1,7 +1,7 @@
/* $NetBSD: if_arc.h,v 1.13 1999/11/19 20:41:19 thorpej Exp $ */
/* $FreeBSD$ */
-/*
+/*-
* Copyright (c) 1982, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_arcsubr.c b/sys/net/if_arcsubr.c
index fb221ab88643f..39022eff841ed 100644
--- a/sys/net/if_arcsubr.c
+++ b/sys/net/if_arcsubr.c
@@ -1,7 +1,7 @@
/* $NetBSD: if_arcsubr.c,v 1.36 2001/06/14 05:44:23 itojun Exp $ */
/* $FreeBSD$ */
-/*
+/*-
* Copyright (c) 1994, 1995 Ignatios Souvatzis
* Copyright (c) 1982, 1989, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/net/if_arp.h b/sys/net/if_arp.h
index a9cdd42a3dfbb..71f078b529954 100644
--- a/sys/net/if_arp.h
+++ b/sys/net/if_arp.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_atm.h b/sys/net/if_atm.h
index 48bfa61ff5b5d..4084569b13e1e 100644
--- a/sys/net/if_atm.h
+++ b/sys/net/if_atm.h
@@ -1,7 +1,7 @@
/* $NetBSD: if_atm.h,v 1.7 1996/11/09 23:02:27 chuck Exp $ */
/* $FreeBSD$ */
-/*
+/*-
*
* Copyright (c) 1996 Charles D. Cranor and Washington University.
* All rights reserved.
diff --git a/sys/net/if_atmsubr.c b/sys/net/if_atmsubr.c
index e7df9c324c41f..a5f7b11079e52 100644
--- a/sys/net/if_atmsubr.c
+++ b/sys/net/if_atmsubr.c
@@ -1,6 +1,6 @@
/* $NetBSD: if_atmsubr.c,v 1.10 1997/03/11 23:19:51 chuck Exp $ */
-/*
+/*-
*
* Copyright (c) 1996 Charles D. Cranor and Washington University.
* All rights reserved.
diff --git a/sys/net/if_clone.c b/sys/net/if_clone.c
index 7a519ee452d5e..622afd501423a 100644
--- a/sys/net/if_clone.c
+++ b/sys/net/if_clone.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1980, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_clone.h b/sys/net/if_clone.h
index 61f1f1fc2107e..d84b47ef42aa8 100644
--- a/sys/net/if_clone.h
+++ b/sys/net/if_clone.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1982, 1986, 1989, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_disc.c b/sys/net/if_disc.c
index 1b71630622cb0..da02110446ce1 100644
--- a/sys/net/if_disc.c
+++ b/sys/net/if_disc.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1982, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_dl.h b/sys/net/if_dl.h
index f13b4198670df..8d88623db8568 100644
--- a/sys/net/if_dl.h
+++ b/sys/net/if_dl.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c
index e7a923b33d50f..2a0df50ccac01 100644
--- a/sys/net/if_ethersubr.c
+++ b/sys/net/if_ethersubr.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1982, 1989, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_faith.c b/sys/net/if_faith.c
index 91b727c14c23c..726eb91e4bff0 100644
--- a/sys/net/if_faith.c
+++ b/sys/net/if_faith.c
@@ -1,6 +1,6 @@
/* $KAME: if_faith.c,v 1.23 2001/12/17 13:55:29 sumikawa Exp $ */
-/*
+/*-
* Copyright (c) 1982, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_fddisubr.c b/sys/net/if_fddisubr.c
index a38c1cc19f942..a5bd486886bd5 100644
--- a/sys/net/if_fddisubr.c
+++ b/sys/net/if_fddisubr.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1995, 1996
* Matt Thomas <matt@3am-software.com>. All rights reserved.
* Copyright (c) 1982, 1989, 1993
diff --git a/sys/net/if_fwsubr.c b/sys/net/if_fwsubr.c
index 331f361466f88..ecee52e24a911 100644
--- a/sys/net/if_fwsubr.c
+++ b/sys/net/if_fwsubr.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 2004 Doug Rabson
* Copyright (c) 1982, 1989, 1993
* The Regents of the University of California. All rights reserved.
diff --git a/sys/net/if_gif.c b/sys/net/if_gif.c
index 6d2221c2d7990..6d00fd8e41254 100644
--- a/sys/net/if_gif.c
+++ b/sys/net/if_gif.c
@@ -1,7 +1,7 @@
/* $FreeBSD$ */
/* $KAME: if_gif.c,v 1.87 2001/10/19 08:50:27 itojun Exp $ */
-/*
+/*-
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
* All rights reserved.
*
diff --git a/sys/net/if_gif.h b/sys/net/if_gif.h
index c3a9df26b180a..dc92ae1cf1bad 100644
--- a/sys/net/if_gif.h
+++ b/sys/net/if_gif.h
@@ -1,7 +1,7 @@
/* $FreeBSD$ */
/* $KAME: if_gif.h,v 1.17 2000/09/11 11:36:41 sumikawa Exp $ */
-/*
+/*-
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
* All rights reserved.
*
diff --git a/sys/net/if_gre.c b/sys/net/if_gre.c
index 34dafef986f9a..a2a783151a381 100644
--- a/sys/net/if_gre.c
+++ b/sys/net/if_gre.c
@@ -1,7 +1,7 @@
/* $NetBSD: if_gre.c,v 1.49 2003/12/11 00:22:29 itojun Exp $ */
/* $FreeBSD$ */
-/*
+/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
diff --git a/sys/net/if_gre.h b/sys/net/if_gre.h
index 2910f2f96a8f6..ef9fa4e0abfad 100644
--- a/sys/net/if_gre.h
+++ b/sys/net/if_gre.h
@@ -1,7 +1,7 @@
/* $NetBSD: if_gre.h,v 1.13 2003/11/10 08:51:52 wiz Exp $ */
/* $FreeBSD$ */
-/*
+/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved
*
diff --git a/sys/net/if_iso88025subr.c b/sys/net/if_iso88025subr.c
index dfe31e2292b89..ff88371d8c6ec 100644
--- a/sys/net/if_iso88025subr.c
+++ b/sys/net/if_iso88025subr.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1998, Larry Lile
* All rights reserved.
*
diff --git a/sys/net/if_llc.h b/sys/net/if_llc.h
index a458b2b4066ab..afdcda8d7c7d3 100644
--- a/sys/net/if_llc.h
+++ b/sys/net/if_llc.h
@@ -1,6 +1,6 @@
/* $NetBSD: if_llc.h,v 1.12 1999/11/19 20:41:19 thorpej Exp $ */
-/*
+/*-
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c
index 1ddf74fcfe280..c2896c43d6061 100644
--- a/sys/net/if_loop.c
+++ b/sys/net/if_loop.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1982, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_media.c b/sys/net/if_media.c
index 535115790c6e7..dcb947516365f 100644
--- a/sys/net/if_media.c
+++ b/sys/net/if_media.c
@@ -1,7 +1,7 @@
/* $NetBSD: if_media.c,v 1.1 1997/03/17 02:55:15 thorpej Exp $ */
/* $FreeBSD$ */
-/*
+/*-
* Copyright (c) 1997
* Jonathan Stone and Jason R. Thorpe. All rights reserved.
*
diff --git a/sys/net/if_media.h b/sys/net/if_media.h
index 3638b8feb5aad..68a785da9f166 100644
--- a/sys/net/if_media.h
+++ b/sys/net/if_media.h
@@ -1,7 +1,7 @@
/* $NetBSD: if_media.h,v 1.3 1997/03/26 01:19:27 thorpej Exp $ */
/* $FreeBSD$ */
-/*
+/*-
* Copyright (c) 1997
* Jonathan Stone and Jason R. Thorpe. All rights reserved.
*
diff --git a/sys/net/if_mib.c b/sys/net/if_mib.c
index f104b77bfd2b4..4f6631b8caab7 100644
--- a/sys/net/if_mib.c
+++ b/sys/net/if_mib.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright 1996 Massachusetts Institute of Technology
*
* Permission to use, copy, modify, and distribute this software and
diff --git a/sys/net/if_mib.h b/sys/net/if_mib.h
index 6c29389f68765..445bd5b388ac4 100644
--- a/sys/net/if_mib.h
+++ b/sys/net/if_mib.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright 1996 Massachusetts Institute of Technology
*
* Permission to use, copy, modify, and distribute this software and
diff --git a/sys/net/if_ppp.c b/sys/net/if_ppp.c
index 53b0b42fca3b8..cece192ba9be7 100644
--- a/sys/net/if_ppp.c
+++ b/sys/net/if_ppp.c
@@ -1,6 +1,8 @@
/*
* if_ppp.c - Point-to-Point Protocol (PPP) Asynchronous driver.
- *
+ */
+
+/*-
* Copyright (c) 1989 Carnegie Mellon University.
* All rights reserved.
*
diff --git a/sys/net/if_ppp.h b/sys/net/if_ppp.h
index 713d39a22a305..d23255be63f0c 100644
--- a/sys/net/if_ppp.h
+++ b/sys/net/if_ppp.h
@@ -1,6 +1,8 @@
/*
* if_ppp.h - Point-to-Point Protocol definitions.
- *
+ */
+
+/*-
* Copyright (c) 1989 Carnegie Mellon University.
* All rights reserved.
*
diff --git a/sys/net/if_pppvar.h b/sys/net/if_pppvar.h
index 4449fbb120636..daa263c8c35b8 100644
--- a/sys/net/if_pppvar.h
+++ b/sys/net/if_pppvar.h
@@ -1,6 +1,7 @@
/*
* if_pppvar.h - private structures and declarations for PPP.
- *
+ */
+/*-
* Copyright (c) 1994 The Australian National University.
* All rights reserved.
*
diff --git a/sys/net/if_sl.c b/sys/net/if_sl.c
index de4e8ed896b31..0617037ed9261 100644
--- a/sys/net/if_sl.c
+++ b/sys/net/if_sl.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1987, 1989, 1992, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_sppp.h b/sys/net/if_sppp.h
index 4149663bc09c5..39267aebe272a 100644
--- a/sys/net/if_sppp.h
+++ b/sys/net/if_sppp.h
@@ -1,6 +1,7 @@
/*
* Defines for synchronous PPP/Cisco/Frame Relay link level subroutines.
- *
+ */
+/*-
* Copyright (C) 1994-2000 Cronyx Engineering.
* Author: Serge Vakulenko, <vak@cronyx.ru>
*
diff --git a/sys/net/if_spppfr.c b/sys/net/if_spppfr.c
index 0cd9fcbb49ae8..7989df9aa101b 100644
--- a/sys/net/if_spppfr.c
+++ b/sys/net/if_spppfr.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Synchronous Frame Relay link level subroutines.
* ANSI T1.617-compaible link management signaling
* implemented for Frame Relay mode.
diff --git a/sys/net/if_spppsubr.c b/sys/net/if_spppsubr.c
index 94f9c83ff1a00..d7cf48441ee4d 100644
--- a/sys/net/if_spppsubr.c
+++ b/sys/net/if_spppsubr.c
@@ -1,7 +1,8 @@
/*
* Synchronous PPP/Cisco/Frame Relay link level subroutines.
* Keepalive protocol implemented in both Cisco and PPP modes.
- *
+ */
+/*-
* Copyright (C) 1994-2000 Cronyx Engineering.
* Author: Serge Vakulenko, <vak@cronyx.ru>
*
diff --git a/sys/net/if_stf.c b/sys/net/if_stf.c
index eff2c7ea2f872..5cfb438ef37a9 100644
--- a/sys/net/if_stf.c
+++ b/sys/net/if_stf.c
@@ -1,7 +1,7 @@
/* $FreeBSD$ */
/* $KAME: if_stf.c,v 1.73 2001/12/03 11:08:30 keiichi Exp $ */
-/*
+/*-
* Copyright (C) 2000 WIDE Project.
* All rights reserved.
*
diff --git a/sys/net/if_stf.h b/sys/net/if_stf.h
index 07d3d57a562cd..cbaf67033c54b 100644
--- a/sys/net/if_stf.h
+++ b/sys/net/if_stf.h
@@ -1,7 +1,7 @@
/* $FreeBSD$ */
/* $KAME: if_stf.h,v 1.5 2001/10/12 10:09:17 keiichi Exp $ */
-/*
+/*-
* Copyright (C) 2000 WIDE Project.
* All rights reserved.
*
diff --git a/sys/net/if_tap.c b/sys/net/if_tap.c
index 3642097e69fbe..46fd2762fadf3 100644
--- a/sys/net/if_tap.c
+++ b/sys/net/if_tap.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (C) 1999-2000 by Maksim Yevmenkin <m_evmenkin@yahoo.com>
* All rights reserved.
*
diff --git a/sys/net/if_tap.h b/sys/net/if_tap.h
index 30f742129191d..daaddf73d648b 100644
--- a/sys/net/if_tap.h
+++ b/sys/net/if_tap.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (C) 1999-2000 by Maksim Yevmenkin <m_evmenkin@yahoo.com>
* All rights reserved.
*
diff --git a/sys/net/if_tapvar.h b/sys/net/if_tapvar.h
index 512a33d7e95cb..1017bae847d1f 100644
--- a/sys/net/if_tapvar.h
+++ b/sys/net/if_tapvar.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (C) 1999-2000 by Maksim Yevmenkin <m_evmenkin@yahoo.com>
* All rights reserved.
*
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c
index 9103113b6ec62..8936110ee8e0a 100644
--- a/sys/net/if_tun.c
+++ b/sys/net/if_tun.c
@@ -1,6 +1,6 @@
/* $NetBSD: if_tun.c,v 1.14 1994/06/29 06:36:25 cgd Exp $ */
-/*
+/*-
* Copyright (c) 1988, Julian Onions <jpo@cs.nott.ac.uk>
* Nottingham University 1987.
*
diff --git a/sys/net/if_tun.h b/sys/net/if_tun.h
index 185930af318b5..382881cb256d1 100644
--- a/sys/net/if_tun.h
+++ b/sys/net/if_tun.h
@@ -1,6 +1,6 @@
/* $NetBSD: if_tun.h,v 1.5 1994/06/29 06:36:27 cgd Exp $ */
-/*
+/*-
* Copyright (c) 1988, Julian Onions <jpo@cs.nott.ac.uk>
* Nottingham University 1987.
*
diff --git a/sys/net/if_types.h b/sys/net/if_types.h
index e23af2ddb3215..7af5bec098811 100644
--- a/sys/net/if_types.h
+++ b/sys/net/if_types.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1989, 1993, 1994
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_var.h b/sys/net/if_var.h
index ebbaa2506e349..d1d9fa2c21e98 100644
--- a/sys/net/if_var.h
+++ b/sys/net/if_var.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1982, 1986, 1989, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c
index 7a8429d641db1..499af6b31ec24 100644
--- a/sys/net/if_vlan.c
+++ b/sys/net/if_vlan.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright 1998 Massachusetts Institute of Technology
*
* Permission to use, copy, modify, and distribute this software and
diff --git a/sys/net/if_vlan_var.h b/sys/net/if_vlan_var.h
index 871c0d3871fa7..b8b9997496eb7 100644
--- a/sys/net/if_vlan_var.h
+++ b/sys/net/if_vlan_var.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright 1998 Massachusetts Institute of Technology
*
* Permission to use, copy, modify, and distribute this software and
diff --git a/sys/net/iso88025.h b/sys/net/iso88025.h
index 1333cc572cac0..8ffb23f92d383 100644
--- a/sys/net/iso88025.h
+++ b/sys/net/iso88025.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1998, Larry Lile
* All rights reserved.
*
diff --git a/sys/net/net_osdep.h b/sys/net/net_osdep.h
index 66e99b5ad6efe..f518be6160d6b 100644
--- a/sys/net/net_osdep.h
+++ b/sys/net/net_osdep.h
@@ -1,7 +1,7 @@
/* $FreeBSD$ */
/* $KAME: net_osdep.h,v 1.80 2003/08/09 17:06:39 suz Exp $ */
-/*
+/*-
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
* All rights reserved.
*
diff --git a/sys/net/netisr.h b/sys/net/netisr.h
index 1b11fca890c4b..9ba3e8d4a653c 100644
--- a/sys/net/netisr.h
+++ b/sys/net/netisr.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1980, 1986, 1989, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/pfil.c b/sys/net/pfil.c
index bfd382db6bed3..c9b7ce7acce50 100644
--- a/sys/net/pfil.c
+++ b/sys/net/pfil.c
@@ -1,7 +1,7 @@
/* $FreeBSD$ */
/* $NetBSD: pfil.c,v 1.20 2001/11/12 23:49:46 lukem Exp $ */
-/*
+/*-
* Copyright (c) 1996 Matthew R. Green
* All rights reserved.
*
diff --git a/sys/net/pfil.h b/sys/net/pfil.h
index ed5a3d030fc26..da14f5b4801c6 100644
--- a/sys/net/pfil.h
+++ b/sys/net/pfil.h
@@ -1,7 +1,7 @@
/* $FreeBSD$ */
/* $NetBSD: pfil.h,v 1.22 2003/06/23 12:57:08 martin Exp $ */
-/*
+/*-
* Copyright (c) 1996 Matthew R. Green
* All rights reserved.
*
diff --git a/sys/net/pfkeyv2.h b/sys/net/pfkeyv2.h
index a164f3befe524..d959acb1fac90 100644
--- a/sys/net/pfkeyv2.h
+++ b/sys/net/pfkeyv2.h
@@ -1,7 +1,7 @@
/* $FreeBSD$ */
/* $KAME: pfkeyv2.h,v 1.37 2003/09/06 05:15:43 itojun Exp $ */
-/*
+/*-
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
* All rights reserved.
*
diff --git a/sys/net/ppp_comp.h b/sys/net/ppp_comp.h
index d75e6a78fdbeb..00591efc23219 100644
--- a/sys/net/ppp_comp.h
+++ b/sys/net/ppp_comp.h
@@ -1,6 +1,8 @@
/*
* ppp_comp.h - Definitions for doing PPP packet compression.
- *
+ */
+
+/*-
* Copyright (c) 1994 The Australian National University.
* All rights reserved.
*
diff --git a/sys/net/ppp_deflate.c b/sys/net/ppp_deflate.c
index 3c7884e033d7a..6a49363c1cf72 100644
--- a/sys/net/ppp_deflate.c
+++ b/sys/net/ppp_deflate.c
@@ -1,6 +1,6 @@
/* $FreeBSD$ */
-/*
+/*-
* ppp_deflate.c - interface the zlib procedures for Deflate compression
* and decompression (as used by gzip) to the PPP code.
* This version is for use with mbufs on BSD-derived systems.
diff --git a/sys/net/ppp_defs.h b/sys/net/ppp_defs.h
index be891ee55ff31..386a1763b1e33 100644
--- a/sys/net/ppp_defs.h
+++ b/sys/net/ppp_defs.h
@@ -1,6 +1,7 @@
/*
* ppp_defs.h - PPP definitions.
- *
+ */
+/*-
* Copyright (c) 1994 The Australian National University.
* All rights reserved.
*
diff --git a/sys/net/ppp_tty.c b/sys/net/ppp_tty.c
index d220acd2d3775..3c25bab429a26 100644
--- a/sys/net/ppp_tty.c
+++ b/sys/net/ppp_tty.c
@@ -1,7 +1,8 @@
/*
* ppp_tty.c - Point-to-Point Protocol (PPP) driver for asynchronous
* tty devices.
- *
+ */
+/*-
* Copyright (c) 1989 Carnegie Mellon University.
* All rights reserved.
*
diff --git a/sys/net/radix.c b/sys/net/radix.c
index f4f99d350931d..3e8ef9727ed7a 100644
--- a/sys/net/radix.c
+++ b/sys/net/radix.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1988, 1989, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/radix.h b/sys/net/radix.h
index 2796b9d420d42..ca530955e59ae 100644
--- a/sys/net/radix.h
+++ b/sys/net/radix.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1988, 1989, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/raw_cb.c b/sys/net/raw_cb.c
index b6ab2083a0fe6..8a8bba687b79d 100644
--- a/sys/net/raw_cb.c
+++ b/sys/net/raw_cb.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1980, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/raw_cb.h b/sys/net/raw_cb.h
index 177dedff6ae2d..4e6b77a23ba08 100644
--- a/sys/net/raw_cb.h
+++ b/sys/net/raw_cb.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1980, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/raw_usrreq.c b/sys/net/raw_usrreq.c
index 61b2d86faf45d..f06a9033d4dac 100644
--- a/sys/net/raw_usrreq.c
+++ b/sys/net/raw_usrreq.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1980, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/route.c b/sys/net/route.c
index f2db78cf7c4be..57d0e531b911d 100644
--- a/sys/net/route.c
+++ b/sys/net/route.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1980, 1986, 1991, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/route.h b/sys/net/route.h
index d59ae72d1e55e..755973e2f66e7 100644
--- a/sys/net/route.h
+++ b/sys/net/route.h
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1980, 1986, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/rtsock.c b/sys/net/rtsock.c
index 6ec7c694e6e3b..6fd6867e352f6 100644
--- a/sys/net/rtsock.c
+++ b/sys/net/rtsock.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1988, 1991, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/slcompress.h b/sys/net/slcompress.h
index c506d2b9f30c1..794d8b83818b8 100644
--- a/sys/net/slcompress.h
+++ b/sys/net/slcompress.h
@@ -1,6 +1,7 @@
/*
* Definitions for tcp compression routines.
- *
+ */
+/*-
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
*
diff --git a/sys/net/zlib.c b/sys/net/zlib.c
index b25d4a29a1527..73e95727b9ea5 100644
--- a/sys/net/zlib.c
+++ b/sys/net/zlib.c
@@ -30,7 +30,8 @@
/* +++ zutil.h */
-/* zutil.h -- internal interface and configuration of the compression library
+/*-
+ * zutil.h -- internal interface and configuration of the compression library
* Copyright (C) 1995-1996 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
diff --git a/sys/net/zlib.h b/sys/net/zlib.h
index 35119fb96dcfd..9529e43b8be77 100644
--- a/sys/net/zlib.h
+++ b/sys/net/zlib.h
@@ -16,7 +16,8 @@
/* +++ zlib.h */
-/* zlib.h -- interface of the 'zlib' general purpose compression library
+/*-
+ zlib.h -- interface of the 'zlib' general purpose compression library
version 1.0.4, Jul 24th, 1996.
Copyright (C) 1995-1996 Jean-loup Gailly and Mark Adler
@@ -39,8 +40,8 @@
Jean-loup Gailly Mark Adler
gzip@prep.ai.mit.edu madler@alumni.caltech.edu
-
-
+*/
+/*
The data format used by the zlib library is described by RFCs (Request for
Comments) 1950 to 1952 in the files ftp://ds.internic.net/rfc/rfc1950.txt
(zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).