aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2009-11-25 09:02:09 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2009-11-25 09:02:09 +0100
commit4b55cf5d09a3233eef6816530eeb873408c9ea68 (patch)
tree1fe2c086f26d6d50746a14956758fe5256dcae85
parent653da7c907ebff867e9e782fe6528a3737953f8f (diff)
downloadstrongswan-4b55cf5d09a3233eef6816530eeb873408c9ea68.tar.bz2
strongswan-4b55cf5d09a3233eef6816530eeb873408c9ea68.tar.xz
put identities in single quotes
-rw-r--r--src/charon/plugins/eap_aka/eap_aka_server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charon/plugins/eap_aka/eap_aka_server.c b/src/charon/plugins/eap_aka/eap_aka_server.c
index 459dbba30..6cb971221 100644
--- a/src/charon/plugins/eap_aka/eap_aka_server.c
+++ b/src/charon/plugins/eap_aka/eap_aka_server.c
@@ -323,7 +323,7 @@ static status_t process_identity(private_eap_aka_server_t *this,
return reauthenticate(this, mk, counter, out);
}
/* unable to map, maybe a pseudonym? */
- DBG1(DBG_IKE, "%Y is not a reauth identity", id);
+ DBG1(DBG_IKE, "'%Y' is not a reauth identity", id);
this->use_reauth = FALSE;
}
if (this->use_pseudonym)
@@ -339,7 +339,7 @@ static status_t process_identity(private_eap_aka_server_t *this,
}
else
{
- DBG1(DBG_IKE, "%Y is not a pseudonym", id);
+ DBG1(DBG_IKE, "'%Y' is not a pseudonym", id);
}
}
if (!this->pseudonym && this->use_permanent)