summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpjanzen <pjanzen@openbsd.org>2001-01-17 00:33:03 +0000
committerpjanzen <pjanzen@openbsd.org>2001-01-17 00:33:03 +0000
commit5dc18ceb3a39731fe82fc8d1ad35f056c0b58616 (patch)
tree8c2638a0a554aee92751ca324c43a6689319feb6
parentavoid C sequence point issues; found by cgd@netbsd.org using a development (diff)
downloadwireguard-openbsd-5dc18ceb3a39731fe82fc8d1ad35f056c0b58616.tar.xz
wireguard-openbsd-5dc18ceb3a39731fe82fc8d1ad35f056c0b58616.zip
OpenBSD-ify.
-rw-r--r--usr.sbin/rbootd/bpf.c3
-rw-r--r--usr.sbin/rbootd/conf.c3
-rw-r--r--usr.sbin/rbootd/defs.h1
-rw-r--r--usr.sbin/rbootd/parseconf.c3
-rw-r--r--usr.sbin/rbootd/pathnames.h1
-rw-r--r--usr.sbin/rbootd/rbootd.c3
-rw-r--r--usr.sbin/rbootd/rmp.h1
-rw-r--r--usr.sbin/rbootd/rmp_var.h1
-rw-r--r--usr.sbin/rbootd/utils.c3
9 files changed, 14 insertions, 5 deletions
diff --git a/usr.sbin/rbootd/bpf.c b/usr.sbin/rbootd/bpf.c
index 264dc3c7efc..3c669c51c84 100644
--- a/usr.sbin/rbootd/bpf.c
+++ b/usr.sbin/rbootd/bpf.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: bpf.c,v 1.5 2001/01/17 00:33:03 pjanzen Exp $ */
/* $NetBSD: bpf.c,v 1.5.2.1 1995/11/14 08:45:42 thorpej Exp $ */
/*
@@ -48,7 +49,7 @@
#ifndef lint
/*static char sccsid[] = "@(#)bpf.c 8.1 (Berkeley) 6/4/93";*/
-static char rcsid[] = "$NetBSD: bpf.c,v 1.5.2.1 1995/11/14 08:45:42 thorpej Exp $";
+static char rcsid[] = "$OpenBSD: bpf.c,v 1.5 2001/01/17 00:33:03 pjanzen Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.sbin/rbootd/conf.c b/usr.sbin/rbootd/conf.c
index 51ad23bac5c..13b6cdc469d 100644
--- a/usr.sbin/rbootd/conf.c
+++ b/usr.sbin/rbootd/conf.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: conf.c,v 1.2 2001/01/17 00:33:03 pjanzen Exp $ */
/* $NetBSD: conf.c,v 1.5 1995/10/06 05:12:13 thorpej Exp $ */
/*
@@ -48,7 +49,7 @@
#ifndef lint
/*static char sccsid[] = "@(#)conf.c 8.1 (Berkeley) 6/4/93";*/
-static char rcsid[] = "$NetBSD: conf.c,v 1.5 1995/10/06 05:12:13 thorpej Exp $";
+static char rcsid[] = "$OpenBSD: conf.c,v 1.2 2001/01/17 00:33:03 pjanzen Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.sbin/rbootd/defs.h b/usr.sbin/rbootd/defs.h
index 9ff814e2c30..68491c2ceb4 100644
--- a/usr.sbin/rbootd/defs.h
+++ b/usr.sbin/rbootd/defs.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: defs.h,v 1.2 2001/01/17 00:33:03 pjanzen Exp $ */
/* $NetBSD: defs.h,v 1.5 1995/10/06 05:12:14 thorpej Exp $ */
/*
diff --git a/usr.sbin/rbootd/parseconf.c b/usr.sbin/rbootd/parseconf.c
index 8eb6cedfde2..b40b0dac057 100644
--- a/usr.sbin/rbootd/parseconf.c
+++ b/usr.sbin/rbootd/parseconf.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: parseconf.c,v 1.4 2001/01/17 00:33:03 pjanzen Exp $ */
/* $NetBSD: parseconf.c,v 1.4 1995/10/06 05:12:16 thorpej Exp $ */
/*
@@ -48,7 +49,7 @@
#ifndef lint
/*static char sccsid[] = "@(#)parseconf.c 8.1 (Berkeley) 6/4/93";*/
-static char rcsid[] = "$NetBSD: parseconf.c,v 1.4 1995/10/06 05:12:16 thorpej Exp $";
+static char rcsid[] = "$OpenBSD: parseconf.c,v 1.4 2001/01/17 00:33:03 pjanzen Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.sbin/rbootd/pathnames.h b/usr.sbin/rbootd/pathnames.h
index 381864abc45..fbe5c056152 100644
--- a/usr.sbin/rbootd/pathnames.h
+++ b/usr.sbin/rbootd/pathnames.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: pathnames.h,v 1.2 2001/01/17 00:33:03 pjanzen Exp $ */
/* $NetBSD: pathnames.h,v 1.3 1995/08/21 17:05:15 thorpej Exp $ */
/*
diff --git a/usr.sbin/rbootd/rbootd.c b/usr.sbin/rbootd/rbootd.c
index e78d59846ac..502ddb13ca8 100644
--- a/usr.sbin/rbootd/rbootd.c
+++ b/usr.sbin/rbootd/rbootd.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: rbootd.c,v 1.6 2001/01/17 00:33:03 pjanzen Exp $ */
/* $NetBSD: rbootd.c,v 1.5 1995/10/06 05:12:17 thorpej Exp $ */
/*
@@ -54,7 +55,7 @@ static char copyright[] =
#ifndef lint
/*static char sccsid[] = "@(#)rbootd.c 8.1 (Berkeley) 6/4/93";*/
-static char rcsid[] = "$NetBSD: rbootd.c,v 1.5 1995/10/06 05:12:17 thorpej Exp $";
+static char rcsid[] = "$OpenBSD: rbootd.c,v 1.6 2001/01/17 00:33:03 pjanzen Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/usr.sbin/rbootd/rmp.h b/usr.sbin/rbootd/rmp.h
index 4a686ef2b45..c7cdfb65482 100644
--- a/usr.sbin/rbootd/rmp.h
+++ b/usr.sbin/rbootd/rmp.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: rmp.h,v 1.2 2001/01/17 00:33:04 pjanzen Exp $ */
/* $NetBSD: rmp.h,v 1.4 1995/10/06 05:12:18 thorpej Exp $ */
/*
diff --git a/usr.sbin/rbootd/rmp_var.h b/usr.sbin/rbootd/rmp_var.h
index b184c094a1d..c2021b93e33 100644
--- a/usr.sbin/rbootd/rmp_var.h
+++ b/usr.sbin/rbootd/rmp_var.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: rmp_var.h,v 1.3 2001/01/17 00:33:04 pjanzen Exp $ */
/* $NetBSD: rmp_var.h,v 1.7.2.1 1995/11/14 08:45:43 thorpej Exp $ */
/*
diff --git a/usr.sbin/rbootd/utils.c b/usr.sbin/rbootd/utils.c
index 2fad7ea3f8e..1c71e68a048 100644
--- a/usr.sbin/rbootd/utils.c
+++ b/usr.sbin/rbootd/utils.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: utils.c,v 1.4 2001/01/17 00:33:04 pjanzen Exp $ */
/* $NetBSD: utils.c,v 1.5.2.1 1995/11/14 08:45:46 thorpej Exp $ */
/*
@@ -48,7 +49,7 @@
#ifndef lint
/*static char sccsid[] = "@(#)utils.c 8.1 (Berkeley) 6/4/93";*/
-static char rcsid[] = "$NetBSD: utils.c,v 1.5.2.1 1995/11/14 08:45:46 thorpej Exp $";
+static char rcsid[] = "$OpenBSD: utils.c,v 1.4 2001/01/17 00:33:04 pjanzen Exp $";
#endif /* not lint */
#include <sys/param.h>