diff --git a/platform/gtk/net/tapdev-service.c b/platform/gtk/net/tapdev-service.c index 3310538e8..b87197745 100644 --- a/platform/gtk/net/tapdev-service.c +++ b/platform/gtk/net/tapdev-service.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * @(#)$Id: tapdev-service.c,v 1.2 2007/03/27 20:49:09 oliverschmidt Exp $ + * @(#)$Id: tapdev-service.c,v 1.3 2007/03/27 21:20:12 oliverschmidt Exp $ */ #include "contiki-net.h" @@ -74,7 +74,7 @@ pollhandler(void) should be sent out on the network, the global variable uip_len is set to a value > 0. */ if(uip_len > 0) { - tapdev_do_send(); + tapdev_send(); } } } diff --git a/platform/minimal-net/net/tapdev-service.c b/platform/minimal-net/net/tapdev-service.c index b186185c6..7e432b6bf 100644 --- a/platform/minimal-net/net/tapdev-service.c +++ b/platform/minimal-net/net/tapdev-service.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * @(#)$Id: tapdev-service.c,v 1.3 2007/03/27 20:41:10 oliverschmidt Exp $ + * @(#)$Id: tapdev-service.c,v 1.4 2007/03/27 21:19:35 oliverschmidt Exp $ */ #include "contiki-net.h" @@ -74,7 +74,7 @@ pollhandler(void) should be sent out on the network, the global variable uip_len is set to a value > 0. */ if(uip_len > 0) { - tapdev_do_send(); + tapdev_send(); } } }