diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-04-05 13:57:37 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-04-05 13:57:37 +0200 |
commit | adcb221f19f014ce2bf51f8905af25f68a48aeb6 (patch) | |
tree | 51df6ae76eaa03c817581588d5b89783e04add8c | |
parent | de93154231761e0e154fb62097a5a5993b751a73 (diff) | |
download | strongswan-adcb221f19f014ce2bf51f8905af25f68a48aeb6.tar.bz2 strongswan-adcb221f19f014ce2bf51f8905af25f68a48aeb6.tar.xz |
log the EAP identifier also for vendor specific EAP methods
-rw-r--r-- | src/libcharon/sa/authenticators/eap_authenticator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcharon/sa/authenticators/eap_authenticator.c b/src/libcharon/sa/authenticators/eap_authenticator.c index 3d7104cb5..c39fe0517 100644 --- a/src/libcharon/sa/authenticators/eap_authenticator.c +++ b/src/libcharon/sa/authenticators/eap_authenticator.c @@ -372,8 +372,8 @@ static eap_payload_t* client_process_eap(private_eap_authenticator_t *this, { if (vendor) { - DBG1(DBG_IKE, "server requested vendor specific EAP method %d-%d", - type, vendor); + DBG1(DBG_IKE, "server requested vendor specific EAP method %d-%d ", + "(id: %u)", type, vendor, in->get_identifier(in)); } else { |