summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/udp_usrreq.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c
index ee65e5f8d1c..d05e1c2ed22 100644
--- a/sys/netinet/udp_usrreq.c
+++ b/sys/netinet/udp_usrreq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: udp_usrreq.c,v 1.258 2020/06/21 05:17:15 dlg Exp $ */
+/* $OpenBSD: udp_usrreq.c,v 1.259 2020/06/21 05:19:27 dlg Exp $ */
/* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */
/*
@@ -592,7 +592,8 @@ udp_sbappend(struct inpcb *inp, struct mbuf *m, struct ip *ip,
hlen += sizeof(*uh);
if (inp->inp_upcall != NULL) {
- m = (*inp->inp_upcall)(inp->inp_upcall_arg, m, ip, ip6, uh, hlen);
+ m = (*inp->inp_upcall)(inp->inp_upcall_arg, m,
+ ip, ip6, uh, hlen);
if (m == NULL)
return;
}