summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2004-03-16 17:24:06 +0000
committerobrien <obrien@FreeBSD.org>2004-03-16 17:24:06 +0000
commitc0b1fcdc1f0f0f3033f7cbc0a538f79083ff99a9 (patch)
treec0dff8606a3b7b491b5a6f0bab1195fc12c0759c /contrib
parentb7e56e9eea26be625659f4a99d9094c501a0a3bc (diff)
downloadFreeBSD-src-c0b1fcdc1f0f0f3033f7cbc0a538f79083ff99a9.zip
FreeBSD-src-c0b1fcdc1f0f0f3033f7cbc0a538f79083ff99a9.tar.gz
Fix $FreeBSD$ ids.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/pf/authpf/authpf.c4
-rw-r--r--contrib/pf/ftp-proxy/ftp-proxy.c4
-rw-r--r--contrib/pf/pfctl/parse.y4
-rw-r--r--contrib/pf/pfctl/pfctl.c4
-rw-r--r--contrib/pf/pfctl/pfctl.h2
-rw-r--r--contrib/pf/pfctl/pfctl_altq.c4
-rw-r--r--contrib/pf/pfctl/pfctl_parser.c4
-rw-r--r--contrib/pf/pfctl/pfctl_parser.h2
-rw-r--r--contrib/pf/pfctl/pfctl_qstats.c4
-rw-r--r--contrib/pf/pfctl/pfctl_table.c4
-rw-r--r--contrib/pf/pflogd/pflogd.c4
11 files changed, 29 insertions, 11 deletions
diff --git a/contrib/pf/authpf/authpf.c b/contrib/pf/authpf/authpf.c
index ed3d172..c14bcf7 100644
--- a/contrib/pf/authpf/authpf.c
+++ b/contrib/pf/authpf/authpf.c
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: authpf.c,v 1.68 2003/08/21 19:13:23 frantzen Exp $ */
/*
@@ -26,6 +25,9 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/file.h>
#include <sys/ioctl.h>
diff --git a/contrib/pf/ftp-proxy/ftp-proxy.c b/contrib/pf/ftp-proxy/ftp-proxy.c
index 03c3777..87e9a65 100644
--- a/contrib/pf/ftp-proxy/ftp-proxy.c
+++ b/contrib/pf/ftp-proxy/ftp-proxy.c
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: ftp-proxy.c,v 1.33 2003/08/22 21:50:34 david Exp $ */
/*
@@ -31,6 +30,9 @@
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
/*
* ftp proxy, Originally based on juniper_ftp_proxy from the Obtuse
* Systems juniper firewall, written by Dan Boulet <danny@obtuse.com>
diff --git a/contrib/pf/pfctl/parse.y b/contrib/pf/pfctl/parse.y
index 5218cc1..5a53bac 100644
--- a/contrib/pf/pfctl/parse.y
+++ b/contrib/pf/pfctl/parse.y
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: parse.y,v 1.415 2003/09/01 15:07:40 henning Exp $ */
/*
@@ -26,6 +25,9 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
%{
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/contrib/pf/pfctl/pfctl.c b/contrib/pf/pfctl/pfctl.c
index cd07433..418b51f 100644
--- a/contrib/pf/pfctl/pfctl.c
+++ b/contrib/pf/pfctl/pfctl.c
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: pfctl.c,v 1.188 2003/08/29 21:47:36 cedric Exp $ */
/*
@@ -31,6 +30,9 @@
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
diff --git a/contrib/pf/pfctl/pfctl.h b/contrib/pf/pfctl/pfctl.h
index 8ee1ad4..7ec0c3b 100644
--- a/contrib/pf/pfctl/pfctl.h
+++ b/contrib/pf/pfctl/pfctl.h
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: pfctl.h,v 1.25 2003/08/29 21:47:36 cedric Exp $ */
/*
@@ -29,6 +28,7 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
+ * $FreeBSD$
*/
#ifndef _PFCTL_H_
diff --git a/contrib/pf/pfctl/pfctl_altq.c b/contrib/pf/pfctl/pfctl_altq.c
index 8232710..534902b 100644
--- a/contrib/pf/pfctl/pfctl_altq.c
+++ b/contrib/pf/pfctl/pfctl_altq.c
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: pfctl_altq.c,v 1.77 2003/08/22 21:50:34 david Exp $ */
/*
@@ -19,6 +18,9 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/param.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
diff --git a/contrib/pf/pfctl/pfctl_parser.c b/contrib/pf/pfctl/pfctl_parser.c
index 52b00bb..61b47f5 100644
--- a/contrib/pf/pfctl/pfctl_parser.c
+++ b/contrib/pf/pfctl/pfctl_parser.c
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: pfctl_parser.c,v 1.175 2003/09/18 20:27:58 cedric Exp $ */
/*
@@ -31,6 +30,9 @@
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <sys/socket.h>
#include <net/if.h>
diff --git a/contrib/pf/pfctl/pfctl_parser.h b/contrib/pf/pfctl/pfctl_parser.h
index 47e60ee..6911a47 100644
--- a/contrib/pf/pfctl/pfctl_parser.h
+++ b/contrib/pf/pfctl/pfctl_parser.h
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: pfctl_parser.h,v 1.67 2003/08/21 19:12:09 frantzen Exp $ */
/*
@@ -29,6 +28,7 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
+ * $FreeBSD$
*/
#ifndef _PFCTL_PARSER_H_
diff --git a/contrib/pf/pfctl/pfctl_qstats.c b/contrib/pf/pfctl/pfctl_qstats.c
index 5d65ebc..0e8b61f 100644
--- a/contrib/pf/pfctl/pfctl_qstats.c
+++ b/contrib/pf/pfctl/pfctl_qstats.c
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: pfctl_qstats.c,v 1.24 2003/07/31 09:46:08 kjc Exp $ */
/*
@@ -17,6 +16,9 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
diff --git a/contrib/pf/pfctl/pfctl_table.c b/contrib/pf/pfctl/pfctl_table.c
index 3796e1e..ad4d53a 100644
--- a/contrib/pf/pfctl/pfctl_table.c
+++ b/contrib/pf/pfctl/pfctl_table.c
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: pfctl_table.c,v 1.50 2003/08/29 21:47:36 cedric Exp $ */
/*
@@ -31,6 +30,9 @@
*
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
diff --git a/contrib/pf/pflogd/pflogd.c b/contrib/pf/pflogd/pflogd.c
index 6ed5f9f..e69c4ae 100644
--- a/contrib/pf/pflogd/pflogd.c
+++ b/contrib/pf/pflogd/pflogd.c
@@ -1,4 +1,3 @@
-/* $FreeBSD$ */
/* $OpenBSD: pflogd.c,v 1.21 2003/08/22 21:50:34 david Exp $ */
/*
@@ -31,6 +30,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
#include <sys/types.h>
#include <sys/file.h>
#include <sys/stat.h>
OpenPOWER on IntegriCloud