summaryrefslogtreecommitdiff
path: root/sys/net/if_vxlan.c
diff options
context:
space:
mode:
authorJan Klemkow <jan@cvs.openbsd.org>2022-01-10 14:08:00 +0000
committerJan Klemkow <jan@cvs.openbsd.org>2022-01-10 14:08:00 +0000
commite8181d796873b82eca3ea9f41a8e69932b384af0 (patch)
treee4327c9885c8b71f55aa0cf68e0ec75bb4ca38ea /sys/net/if_vxlan.c
parent66f90c1f639ab64642125d5555f0c574208ba75a (diff)
Use NULL instead of 0 for pointers.
OK bluhm@
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 8d7fae6888b..27ea46f7461 100644
--- a/sys/net/if_vxlan.c
+++ b/sys/net/if_vxlan.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vxlan.c,v 1.82 2021/02/25 02:48:21 dlg Exp $ */
+/* $OpenBSD: if_vxlan.c,v 1.83 2022/01/10 14:07:59 jan Exp $ */
/*
* Copyright (c) 2013 Reyk Floeter <reyk@openbsd.org>
@@ -950,7 +950,7 @@ vxlan_output(struct ifnet *ifp, struct mbuf *m)
break;
#ifdef INET6
case AF_INET6:
- error = ip6_output(m, 0, NULL, IPV6_MINMTU, 0, NULL);
+ error = ip6_output(m, NULL, NULL, IPV6_MINMTU, NULL, NULL);
break;
#endif /* INET6 */
default: