diff options
author | 1997-06-27 02:23:22 +0000 | |
---|---|---|
committer | 1997-06-27 02:23:22 +0000 | |
commit | d63fc1a79c996e19b1407d1d9c2863ca840a39e6 (patch) | |
tree | 91c0bae36438494a22afdd40da37552424eb490b /sys/netinet/udp_usrreq.c | |
parent | long nightmares (diff) | |
download | wireguard-openbsd-d63fc1a79c996e19b1407d1d9c2863ca840a39e6.tar.xz wireguard-openbsd-d63fc1a79c996e19b1407d1d9c2863ca840a39e6.zip |
udp icmp errors had ip_len 20 bytes too large; stevens p774; koji@math.human.nagoya-u.ac.jp
Diffstat (limited to 'sys/netinet/udp_usrreq.c')
-rw-r--r-- | sys/netinet/udp_usrreq.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index 275dbba0c17..ed53e8d88a8 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udp_usrreq.c,v 1.9 1997/02/16 04:42:50 deraadt Exp $ */ +/* $OpenBSD: udp_usrreq.c,v 1.10 1997/06/27 02:23:22 deraadt Exp $ */ /* $NetBSD: udp_usrreq.c,v 1.28 1996/03/16 23:54:03 christos Exp $ */ /* @@ -279,7 +279,6 @@ udp_input(m, va_alist) goto bad; } *ip = save_ip; - ip->ip_len += iphlen; icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_PORT, 0, 0); return; } |