From 4cde3691746a25ff8a65c9f31447f8d12baa07f2 Mon Sep 17 00:00:00 2001 From: adamdunkels Date: Thu, 29 Mar 2007 22:22:44 +0000 Subject: [PATCH] Added call to timedout callback --- core/net/rime/route-discovery.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/net/rime/route-discovery.c b/core/net/rime/route-discovery.c index d1c1a94fd..c599f6bfc 100644 --- a/core/net/rime/route-discovery.c +++ b/core/net/rime/route-discovery.c @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: route-discovery.c,v 1.3 2007/03/25 12:13:04 adamdunkels Exp $ + * $Id: route-discovery.c,v 1.4 2007/03/29 22:22:44 adamdunkels Exp $ */ /** @@ -231,7 +231,7 @@ timeout_handler(void *ptr) struct route_discovery_conn *c = ptr; PRINTF("route_discovery: timeout, timed out\n"); if(c->cb->timedout) { - /* c->cb->timedout(c);*/ + c->cb->timedout(c); } } /*---------------------------------------------------------------------------*/