diff options
Diffstat (limited to 'net/ping.c')
-rw-r--r-- | net/ping.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ping.c b/net/ping.c index 0f4d99088e..f0026cc420 100644 --- a/net/ping.c +++ b/net/ping.c @@ -112,8 +112,7 @@ void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len) icmph->checksum = 0; icmph->checksum = ~NetCksum((uchar *)icmph, (len - IP_HDR_SIZE) >> 1); - (void) eth_send((uchar *)et, - ETHER_HDR_SIZE + len); + NetSendPacket((uchar *)et, ETHER_HDR_SIZE + len); return; /* default: return;*/ |