diff --git a/src/netif/zepif.c b/src/netif/zepif.c index f1b91f58..707f5fdb 100644 --- a/src/netif/zepif.c +++ b/src/netif/zepif.c @@ -155,7 +155,7 @@ zepif_udp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, /* Call tcpip_6lowpan_input here, not netif->input as we know the direct call * stack won't work as we could enter udp_input twice. */ - err = tcpip_6lowpan_input(p, netif_lowpan6); + err = netif_lowpan6->input(p, netif_lowpan6); if (err == ERR_OK) { return; }