diff options
author | Martin Willi <martin@strongswan.org> | 2009-09-04 14:58:05 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-09-04 15:00:19 +0200 |
commit | b9b8a98f472aed6c60dd992ad97776eaa188ea9e (patch) | |
tree | 23d2a960db77b4e30ab985c9a00bd99d0950ef0e /src/charon/plugins/eap_sim | |
parent | 323f9f990fb28583bfaaaad04f9934c0f0e62052 (diff) | |
download | strongswan-b9b8a98f472aed6c60dd992ad97776eaa188ea9e.tar.bz2 strongswan-b9b8a98f472aed6c60dd992ad97776eaa188ea9e.tar.xz |
remove spaces within tabs (\t( )+\t)
Diffstat (limited to 'src/charon/plugins/eap_sim')
-rw-r--r-- | src/charon/plugins/eap_sim/eap_sim.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/charon/plugins/eap_sim/eap_sim.c b/src/charon/plugins/eap_sim/eap_sim.c index 56d79281d..811febdb3 100644 --- a/src/charon/plugins/eap_sim/eap_sim.c +++ b/src/charon/plugins/eap_sim/eap_sim.c @@ -475,17 +475,17 @@ static status_t peer_process_start(private_eap_sim_t *this, eap_payload_t *in, if (code <= 32767) /* no success bit */ { DBG1(DBG_IKE, "received %N error %d", - sim_attribute_names, attribute, code); + sim_attribute_names, attribute, code); *out = build_payload(this, in->get_identifier(in), SIM_CLIENT_ERROR, - AT_CLIENT_ERROR_CODE, client_error_general, + AT_CLIENT_ERROR_CODE, client_error_general, AT_END); return NEED_MORE; } else { DBG1(DBG_IKE, "received %N code %d", - sim_attribute_names, attribute, code); + sim_attribute_names, attribute, code); } break; } @@ -623,17 +623,17 @@ static status_t peer_process_challenge(private_eap_sim_t *this, if (code <= 32767) /* no success bit */ { DBG1(DBG_IKE, "received %N error %d", - sim_attribute_names, attribute, code); + sim_attribute_names, attribute, code); *out = build_payload(this, in->get_identifier(in), SIM_CLIENT_ERROR, - AT_CLIENT_ERROR_CODE, client_error_general, + AT_CLIENT_ERROR_CODE, client_error_general, AT_END); return NEED_MORE; } else { DBG1(DBG_IKE, "received %N code %d", - sim_attribute_names, attribute, code); + sim_attribute_names, attribute, code); } break; } @@ -877,17 +877,17 @@ static status_t peer_process_notification(private_eap_sim_t *this, if (code <= 32767) /* no success bit */ { DBG1(DBG_IKE, "received %N error %d", - sim_attribute_names, attribute, code); + sim_attribute_names, attribute, code); *out = build_payload(this, in->get_identifier(in), SIM_CLIENT_ERROR, - AT_CLIENT_ERROR_CODE, client_error_general, + AT_CLIENT_ERROR_CODE, client_error_general, AT_END); return NEED_MORE; } else { DBG1(DBG_IKE, "received %N code %d", - sim_attribute_names, attribute, code); + sim_attribute_names, attribute, code); } break; } @@ -924,7 +924,7 @@ static status_t server_process_client_error(private_eap_sim_t *this, code = ntohs(*(u_int16_t*)data.ptr); } DBG1(DBG_IKE, "received %N error %d", - sim_attribute_names, attribute, code); + sim_attribute_names, attribute, code); } else { |