diff options
| author | 2012-03-17 10:16:40 +0000 | |
|---|---|---|
| committer | 2012-03-17 10:16:40 +0000 | |
| commit | b0e455552143d16d57cf376400e35cb68c1b2a70 (patch) | |
| tree | e9dc5d832bc5761637bce6b63b29961189df2481 /sys/netinet/udp_usrreq.c | |
| parent | install the rc.d script for tftpd, ok dlg@ (diff) | |
| download | wireguard-openbsd-b0e455552143d16d57cf376400e35cb68c1b2a70.tar.xz wireguard-openbsd-b0e455552143d16d57cf376400e35cb68c1b2a70.zip | |
remove IP_JUMBO, SO_JUMBO, and RTF_JUMBO.
no objection from mcbride@ krw@ markus@ deraadt@
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
| -rw-r--r-- | sys/netinet/udp_usrreq.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index b3fd28f017e..460711190e2 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.145 2011/07/08 18:30:17 yasuoka Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.146 2012/03/17 10:16:41 dlg Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -1034,8 +1034,7 @@ udp_output(struct mbuf *m, ...) m->m_pkthdr.rdomain = inp->inp_rtableid; error = ip_output(m, inp->inp_options, &inp->inp_route, - inp->inp_socket->so_options & - (SO_DONTROUTE | SO_BROADCAST | SO_JUMBO), + inp->inp_socket->so_options & (SO_DONTROUTE | SO_BROADCAST), inp->inp_moptions, inp); if (error == EACCES) /* translate pf(4) error for userland */ error = EHOSTUNREACH; |
