From 571b9564009280109b979baba6a5520bbed0a3cf Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Tue, 27 Mar 2007 21:19:35 +0000 Subject: [PATCH] Added missing adjustment to recent change on moving all ARP handling to service wrappers. --- platform/gtk/net/tapdev-service.c | 4 ++-- platform/minimal-net/net/tapdev-service.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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(); } } }