diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-04-19 01:08:51 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-04-19 01:08:51 +0200 |
commit | 638b4a1ec113adebdd6a85d647574a46e0b7feab (patch) | |
tree | a7f73ff337561664e71c95124a37179e20299310 /sys/src/9/ip/udp.c | |
parent | 691370a08dbfda305f0302023618211ffbfbce7a (diff) |
devip: add "reflect" ctl message, fix memory leaks in icmpv6, fix source address for icmpttlexceeded, cleanup
Diffstat (limited to 'sys/src/9/ip/udp.c')
-rw-r--r-- | sys/src/9/ip/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/ip/udp.c b/sys/src/9/ip/udp.c index fbaabd634..cfa002116 100644 --- a/sys/src/9/ip/udp.c +++ b/sys/src/9/ip/udp.c @@ -404,7 +404,7 @@ udpiput(Proto *udp, Ipifc *ifc, Block *bp) icmpnoconv(f, bp); break; case V6: - icmphostunr(f, ifc, bp, Icmp6_port_unreach, 0); + icmphostunr6(f, ifc, bp, Icmp6_port_unreach, 0); break; default: panic("udpiput2: version %d", version); |