summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2015-01-18 20:05:20 +0000
committerguenther <guenther@openbsd.org>2015-01-18 20:05:20 +0000
commitad31084ee1a28e8828dc38f1d7a746dfe996373d (patch)
tree25e28a3c033b16244a6452cb25aae356fa316395
parentmore and better key tests (diff)
downloadwireguard-openbsd-ad31084ee1a28e8828dc38f1d7a746dfe996373d.tar.xz
wireguard-openbsd-ad31084ee1a28e8828dc38f1d7a746dfe996373d.zip
Eliminate a gcc warnings by not #defining _KERNEL when pulling in
<sys/socket.h>: it doesn't expose anything kdump cares about. Also, COMPAT_43 is dead warning noted by deraadt@
-rw-r--r--usr.bin/kdump/mksubr5
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/kdump/mksubr b/usr.bin/kdump/mksubr
index 8eb431279b0..7dcc42cf215 100644
--- a/usr.bin/kdump/mksubr
+++ b/usr.bin/kdump/mksubr
@@ -1,5 +1,5 @@
#!/bin/sh
-# $OpenBSD: mksubr,v 1.25 2014/12/11 05:44:12 guenther Exp $
+# $OpenBSD: mksubr,v 1.26 2015/01/18 20:05:20 guenther Exp $
#
# Copyright (c) 2006 David Kirchner <dpk@dpk.net>
#
@@ -269,10 +269,7 @@ cat <<_EOF_
#undef _KERNEL
#include <sys/wait.h>
#include <sys/proc.h>
-#define _KERNEL
-#define COMPAT_43
#include <sys/socket.h>
-#undef _KERNEL
#include <netinet/in.h>
#include <sys/param.h>
#include <sys/mount.h>