artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
868dc69
)
Use NULL instead of 0 for pointers.
author
jan
<jan@openbsd.org>
Mon, 10 Jan 2022 14:07:59 +0000
(14:07 +0000)
committer
jan
<jan@openbsd.org>
Mon, 10 Jan 2022 14:07:59 +0000
(14:07 +0000)
OK bluhm@
sys/net/if_vxlan.c
patch
|
blob
|
history
diff --git
a/sys/net/if_vxlan.c
b/sys/net/if_vxlan.c
index
8d7fae6
..
27ea46f
100644
(file)
--- a/
sys/net/if_vxlan.c
+++ b/
sys/net/if_vxlan.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: if_vxlan.c,v 1.8
2 2021/02/25 02:48:21 dlg
Exp $ */
+/* $OpenBSD: if_vxlan.c,v 1.8
3 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: