From f701ba838952c3ede19aaea0a4b88fa428237c6d Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Tue, 31 Jul 2012 13:41:59 +0200 Subject: [PATCH] Lookup IKEv1 PSK even if the peer identity is not known --- src/libcharon/sa/ikev1/phase1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcharon/sa/ikev1/phase1.c b/src/libcharon/sa/ikev1/phase1.c index 6e062778b..fee304e6f 100644 --- a/src/libcharon/sa/ikev1/phase1.c +++ b/src/libcharon/sa/ikev1/phase1.c @@ -169,7 +169,7 @@ static shared_key_t *lookup_shared_key(private_phase1_t *this, { my_id = my_auth->get(my_auth, AUTH_RULE_IDENTITY); other_id = other_auth->get(other_auth, AUTH_RULE_IDENTITY); - if (my_id && other_id) + if (my_id) { shared_key = lib->credmgr->get_shared(lib->credmgr, SHARED_IKE, my_id, other_id);