aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2007-09-13 13:00:23 +0000
committerTobias Brunner <tobias@strongswan.org>2007-09-13 13:00:23 +0000
commiteff806eb5a27c9ff0a01c64e7c3e10f17a48f1a5 (patch)
treed1530a51ec67af060a6771e75ed1e91678474187
parent660426ff48fcb2922baad455931564f3440bc84a (diff)
downloadstrongswan-eff806eb5a27c9ff0a01c64e7c3e10f17a48f1a5.tar.bz2
strongswan-eff806eb5a27c9ff0a01c64e7c3e10f17a48f1a5.tar.xz
added missing 'break' in checkout_by_peer
-rw-r--r--src/charon/sa/ike_sa_manager.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/charon/sa/ike_sa_manager.c b/src/charon/sa/ike_sa_manager.c
index d4cf675ce..5014ea0e2 100644
--- a/src/charon/sa/ike_sa_manager.c
+++ b/src/charon/sa/ike_sa_manager.c
@@ -542,6 +542,7 @@ static ike_sa_t* checkout_by_peer(private_ike_sa_manager_t *this,
my_host, my_id, other_host, other_id);
entry->checked_out = TRUE;
ike_sa = entry->ike_sa;
+ break;
}
}
iterator->destroy(iterator);