extended changeset [4753]

This commit is contained in:
Andreas Steffen
2008-12-04 23:16:10 +00:00
parent 3fb404d8da
commit c333bb4678
+2 -1
View File
@@ -252,7 +252,8 @@ static peer_cfg_t *get_peer_cfg(private_backend_manager_t *this, host_t *me,
DBG2(DBG_CFG, " candidate \"%s\": %D...%D with prio %d.%d",
current->get_name(current), my_cand, other_cand,
match_peer, match_ike);
if (match_peer > best_peer && match_ike >= best_ike)
if ((match_peer > best_peer && match_ike >= best_ike) ||
(match_peer >= best_peer && match_ike > best_ike))
{
DESTROY_IF(found);
found = current;