summaryrefslogtreecommitdiffstats
path: root/sys/net/if_vxlan.c
diff options
context:
space:
mode:
authorreyk <reyk@openbsd.org>2016-08-07 14:26:26 +0000
committerreyk <reyk@openbsd.org>2016-08-07 14:26:26 +0000
commit5d0f09812f81544851937f9238762397d440fde0 (patch)
tree35498f1e01dc67958490631231a6ca0af30dcd8f /sys/net/if_vxlan.c
parentDefine VXLAN_VNI_UNSET and VXLAN_VNI_MAX instead of using magic numbers. (diff)
downloadwireguard-openbsd-5d0f09812f81544851937f9238762397d440fde0.tar.xz
wireguard-openbsd-5d0f09812f81544851937f9238762397d440fde0.zip
whitespace
Diffstat (limited to 'sys/net/if_vxlan.c')
-rw-r--r--sys/net/if_vxlan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_vxlan.c b/sys/net/if_vxlan.c
index 247473776ae..3cd59a79b5b 100644
--- a/sys/net/if_vxlan.c
+++ b/sys/net/if_vxlan.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vxlan.c,v 1.41 2016/08/07 13:49:12 reyk Exp $ */
+/* $OpenBSD: if_vxlan.c,v 1.42 2016/08/07 14:26:26 reyk Exp $ */
/*
* Copyright (c) 2013 Reyk Floeter <reyk@openbsd.org>
@@ -345,7 +345,7 @@ vxlan_config(struct ifnet *ifp, struct sockaddr *src, struct sockaddr *dst)
return (error);
if ((port = vxlan_sockaddr_port(dst)) != 0)
- sc->sc_dstport = port;
+ sc->sc_dstport = port;
if (!reset) {
bzero(&sc->sc_src, sizeof(sc->sc_src));