aboutsummaryrefslogtreecommitdiffstats
path: root/src/pluto/kernel.c
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2010-08-30 08:47:13 +0200
committerTobias Brunner <tobias@strongswan.org>2010-09-02 19:04:25 +0200
commit3251294ceb177a73fa1952b5b5b4d6bc5cedb522 (patch)
treef1c96bf648b1dc8c0bb8710be5479f5835949812 /src/pluto/kernel.c
parentd499bdf393af91372cdcdfb91b6605c6e77330ed (diff)
downloadstrongswan-3251294ceb177a73fa1952b5b5b4d6bc5cedb522.tar.bz2
strongswan-3251294ceb177a73fa1952b5b5b4d6bc5cedb522.tar.xz
pluto: Return value fixed.
Diffstat (limited to 'src/pluto/kernel.c')
-rw-r--r--src/pluto/kernel.c2
1 files changed, 1 insertions, 1 deletions
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;