diff options
author | Tobias Brunner <tobias@strongswan.org> | 2010-08-30 08:47:13 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2010-09-02 19:04:25 +0200 |
commit | 3251294ceb177a73fa1952b5b5b4d6bc5cedb522 (patch) | |
tree | f1c96bf648b1dc8c0bb8710be5479f5835949812 /src/pluto/kernel.c | |
parent | d499bdf393af91372cdcdfb91b6605c6e77330ed (diff) | |
download | strongswan-3251294ceb177a73fa1952b5b5b4d6bc5cedb522.tar.bz2 strongswan-3251294ceb177a73fa1952b5b5b4d6bc5cedb522.tar.xz |
pluto: Return value fixed.
Diffstat (limited to 'src/pluto/kernel.c')
-rw-r--r-- | src/pluto/kernel.c | 2 |
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; |