From b8972f57012a6a2096e22702297579beadb23dfe Mon Sep 17 00:00:00 2001 From: jani Date: Mon, 18 Nov 2002 06:51:53 +0000 Subject: [PATCH] forgot to delete 'return' in the last commit --- src/arch/unix/netif/tapif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/unix/netif/tapif.c b/src/arch/unix/netif/tapif.c index fba02e1e..23a15bcf 100644 --- a/src/arch/unix/netif/tapif.c +++ b/src/arch/unix/netif/tapif.c @@ -261,7 +261,7 @@ tapif_output(struct netif *netif, struct pbuf *p, { p = etharp_output(netif, ipaddr, p); if(p != NULL) { - return low_level_output(netif, p); + low_level_output(netif, p); etharp_output_sent(p); p = NULL; }