aboutsummaryrefslogtreecommitdiff
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 debed79915e7..234e414c820e 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 f75841231708..0a952e44685d 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 cc1d11e3510b..2754f4da0404 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 35619271961d..5e0eca447bc8 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 ddd0f0be9cfc..b610b33cf03c 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 666c65d425d8..7eb3b2d2ff31 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 dd08a9289563..40aee8afb15a 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 541502779ab4..a488f29a0c4a 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 3968345079b3..1dac78e3df55 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 a31653e4efe8..0fa63d7a8add 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 db3cb985e602..461f1b4c7333 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 fb221ab88643..39022eff841e 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 a9cdd42a3dfb..71f078b52995 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 48bfa61ff5b5..4084569b13e1 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 e7df9c324c41..a5f7b11079e5 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 7a519ee452d5..622afd501423 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 61f1f1fc2107..d84b47ef42aa 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 1b71630622cb..da02110446ce 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 f13b4198670d..8d88623db856 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 e7a923b33d50..2a0df50ccac0 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 91b727c14c23..726eb91e4bff 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 a38c1cc19f94..a5bd486886bd 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 331f361466f8..ecee52e24a91 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 6d2221c2d799..6d00fd8e4125 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 c3a9df26b180..dc92ae1cf1ba 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 34dafef986f9..a2a783151a38 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 2910f2f96a8f..ef9fa4e0abfa 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 dfe31e2292b8..ff88371d8c6e 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 a458b2b4066a..afdcda8d7c7d 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 1ddf74fcfe28..c2896c43d606 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 535115790c6e..dcb947516365 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 3638b8feb5aa..68a785da9f16 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 f104b77bfd2b..4f6631b8caab 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 6c29389f6876..445bd5b388ac 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 53b0b42fca3b..cece192ba9be 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 713d39a22a30..d23255be63f0 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 4449fbb12063..daa263c8c35b 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 de4e8ed896b3..0617037ed926 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 4149663bc09c..39267aebe272 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 0cd9fcbb49ae..7989df9aa101 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 94f9c83ff1a0..d7cf48441ee4 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 eff2c7ea2f87..5cfb438ef37a 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 07d3d57a562c..cbaf67033c54 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 3642097e69fb..46fd2762fadf 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 30f742129191..daaddf73d648 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 512a33d7e95c..1017bae847d1 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 9103113b6ec6..8936110ee8e0 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 185930af318b..382881cb256d 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 e23af2ddb321..7af5bec09881 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 ebbaa2506e34..d1d9fa2c21e9 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 7a8429d641db..499af6b31ec2 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 871c0d3871fa..b8b9997496eb 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 1333cc572cac..8ffb23f92d38 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 66e99b5ad6ef..f518be6160d6 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 1b11fca890c4..9ba3e8d4a653 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 bfd382db6bed..c9b7ce7acce5 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 ed5a3d030fc2..da14f5b4801c 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 a164f3befe52..d959acb1fac9 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 d75e6a78fdbe..00591efc2321 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 3c7884e033d7..6a49363c1cf7 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 be891ee55ff3..386a1763b1e3 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 d220acd2d377..3c25bab429a2 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 f4f99d350931..3e8ef9727ed7 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 2796b9d420d4..ca530955e59a 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 b6ab2083a0fe..8a8bba687b79 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 177dedff6ae2..4e6b77a23ba0 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 61b2d86faf45..f06a9033d4da 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 f2db78cf7c4b..57d0e531b911 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 d59ae72d1e55..755973e2f66e 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 6ec7c694e6e3..6fd6867e352f 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 c506d2b9f30c..794d8b83818b 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 b25d4a29a152..73e95727b9ea 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 35119fb96dcf..9529e43b8be7 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).