From 3251294ceb177a73fa1952b5b5b4d6bc5cedb522 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 30 Aug 2010 08:47:13 +0200 Subject: [PATCH] pluto: Return value fixed. --- src/pluto/kernel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pluto/kernel.c b/src/pluto/kernel.c index bd1d4b2bd..290ac1e10 100644 --- a/src/pluto/kernel.c +++ b/src/pluto/kernel.c @@ -661,7 +661,7 @@ static enum routability could_route(connection_t *c) loglog(RC_LOG_SERIOUS , "cannot install eroute -- it is in use for \"%s\"%s #%lu" , ero->name, inst, esr->eroute_owner); - return FALSE; /* another connection already using the eroute */ + return route_impossible; } } return route_easy;