aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/plugins/eap_mschapv2
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2009-12-30 23:32:03 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2009-12-30 23:32:03 +0100
commit7eaec999ca577fbde701d3ecf874cd9fee838f79 (patch)
tree33c9f43dec21297b212e7e3a4fc52f80c0d8fdeb /src/charon/plugins/eap_mschapv2
parent83c282ebb44d10d09223f62e97295f7603d61b08 (diff)
downloadstrongswan-7eaec999ca577fbde701d3ecf874cd9fee838f79.tar.bz2
strongswan-7eaec999ca577fbde701d3ecf874cd9fee838f79.tar.xz
make error message about missing MD4 hasher more explicit
Diffstat (limited to 'src/charon/plugins/eap_mschapv2')
-rw-r--r--src/charon/plugins/eap_mschapv2/eap_mschapv2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/plugins/eap_mschapv2/eap_mschapv2.c b/src/charon/plugins/eap_mschapv2/eap_mschapv2.c
index a5cab2100..71e313ae0 100644
--- a/src/charon/plugins/eap_mschapv2/eap_mschapv2.c
+++ b/src/charon/plugins/eap_mschapv2/eap_mschapv2.c
@@ -277,7 +277,7 @@ static status_t NtPasswordHash(chunk_t password, chunk_t *password_hash)
hasher = lib->crypto->create_hasher(lib->crypto, HASH_MD4);
if (hasher == NULL)
{
- DBG1(DBG_IKE, "EAP-MS-CHAPv2 failed, MD4 not supported");
+ DBG1(DBG_IKE, "EAP-MS-CHAPv2 failed, no MD4 hasher available");
return FAILED;
}
hasher->allocate_hash(hasher, password, password_hash);