forgot to delete 'return' in the last commit

This commit is contained in:
jani 2002-11-18 06:51:53 +00:00
parent 8b9a303e21
commit b8972f5701

View File

@ -261,7 +261,7 @@ tapif_output(struct netif *netif, struct pbuf *p,
{ {
p = etharp_output(netif, ipaddr, p); p = etharp_output(netif, ipaddr, p);
if(p != NULL) { if(p != NULL) {
return low_level_output(netif, p); low_level_output(netif, p);
etharp_output_sent(p); etharp_output_sent(p);
p = NULL; p = NULL;
} }