summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-06-23 22:48:33 +0000
committerderaadt <deraadt@openbsd.org>2014-06-23 22:48:33 +0000
commit2c59c1138deed44b422a2a02262373224ec3cc8e (patch)
treee1a46722522782629df02d83062949d1553ee792
parentSince this is a library, place issetugid() before every getenv() (diff)
downloadwireguard-openbsd-2c59c1138deed44b422a2a02262373224ec3cc8e.tar.xz
wireguard-openbsd-2c59c1138deed44b422a2a02262373224ec3cc8e.zip
repair ramdisk builds
-rw-r--r--sys/netinet/udp_usrreq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c
index cb5c8675393..52bcc847b87 100644
--- a/sys/netinet/udp_usrreq.c
+++ b/sys/netinet/udp_usrreq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: udp_usrreq.c,v 1.185 2014/06/23 11:51:42 yasuoka Exp $ */
+/* $OpenBSD: udp_usrreq.c,v 1.186 2014/06/23 22:48:33 deraadt Exp $ */
/* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */
/*
@@ -186,9 +186,9 @@ udp_input(struct mbuf *m, ...)
struct m_tag *mtag;
struct tdb_ident *tdbi;
struct tdb *tdb;
-#endif /* IPSEC */
int error;
u_int32_t ipsecflowinfo = 0;
+#endif /* IPSEC */
va_start(ap, m);
iphlen = va_arg(ap, int);