This commit is contained in:
Roy Marples 2008-07-10 15:31:37 +00:00
parent 60aa832d5c
commit 6c738c7f9e

1
net.c
View File

@ -647,7 +647,6 @@ send_arp(const struct interface *iface, int op, in_addr_t sip, in_addr_t tip)
/* Zero pad if needed */
while (p < (uint8_t *)arp + arpsize)
*p++ = '\0';
retval = send_raw_packet(iface, ETHERTYPE_ARP, arp, arpsize);
free(arp);
return retval;