summaryrefslogtreecommitdiffstats
path: root/sys/netinet/udp_usrreq.c
diff options
context:
space:
mode:
authorbz <bz@FreeBSD.org>2008-08-16 06:39:18 +0000
committerbz <bz@FreeBSD.org>2008-08-16 06:39:18 +0000
commiteafee510a97921d081800945c98ef8a0575e49fb (patch)
treec09d29407c6c33b6d73598387cc27ff869841e33 /sys/netinet/udp_usrreq.c
parentb9ac5192a235cc6efad426f7c989608188af9d9d (diff)
downloadFreeBSD-src-eafee510a97921d081800945c98ef8a0575e49fb.zip
FreeBSD-src-eafee510a97921d081800945c98ef8a0575e49fb.tar.gz
Fix a regression introduced in r179289 splitting up ip6_savecontrol()
into v4-only vs. v6-only inp_flags processing. When ip6_savecontrol_v4() is called from ip6_savecontrol() we were not passing back the **mp thus the information will be missing in userland. Istead of going with a *** as suggested in the PR we are returning **mp now and passing in the v4only flag as a pointer argument. PR: kern/126349 Reviewed by: rwatson, dwmalone
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
-rw-r--r--sys/netinet/udp_usrreq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c
index 715599e..c9cf5d4 100644
--- a/sys/netinet/udp_usrreq.c
+++ b/sys/netinet/udp_usrreq.c
@@ -216,7 +216,7 @@ udp_append(struct inpcb *inp, struct ip *ip, struct mbuf *n, int off,
inp->inp_socket->so_options & (SO_TIMESTAMP | SO_BINTIME)) {
#ifdef INET6
if (inp->inp_vflag & INP_IPV6)
- ip6_savecontrol_v4(inp, n, &opts);
+ (void)ip6_savecontrol_v4(inp, n, &opts, NULL);
else
#endif
ip_savecontrol(inp, &opts, ip, n);
OpenPOWER on IntegriCloud