diff options
-rw-r--r-- | packages/strongswan/debian/changelog | 6 | ||||
-rw-r--r-- | src/charon/plugins/eap_mschapv2/eap_mschapv2.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/packages/strongswan/debian/changelog b/packages/strongswan/debian/changelog index 0b2674983..953e49dc3 100644 --- a/packages/strongswan/debian/changelog +++ b/packages/strongswan/debian/changelog @@ -1,3 +1,9 @@ +strongswan (4.2.12-6~ppa1~intrepid1) intrepid; urgency=low + + * fixed MSCHAPv2 password lookup + + -- Martin Willi <martin@strongswan.org> Tue, 24 Feb 2009 12:57:45 +0100 + strongswan (4.2.12-5~ppa1~intrepid1) intrepid; urgency=low * added EAP-Identity package diff --git a/src/charon/plugins/eap_mschapv2/eap_mschapv2.c b/src/charon/plugins/eap_mschapv2/eap_mschapv2.c index 491814542..2f276eb0b 100644 --- a/src/charon/plugins/eap_mschapv2/eap_mschapv2.c +++ b/src/charon/plugins/eap_mschapv2/eap_mschapv2.c @@ -643,7 +643,7 @@ static status_t process_peer_challenge(private_eap_mschapv2_t *this, rng->destroy(rng); shared = charon->credentials->get_shared(charon->credentials, - SHARED_EAP, this->server, this->peer); + SHARED_EAP, this->peer, this->server); if (shared == NULL) { DBG1(DBG_IKE, "no EAP key found for hosts '%D' - '%D'", |