diff options
author | Kozlov Dmitry <xeb@mail.ru> | 2012-08-27 12:22:43 +0400 |
---|---|---|
committer | Kozlov Dmitry <xeb@mail.ru> | 2012-08-29 12:11:40 +0400 |
commit | ebbd6f580322767983ebf6b4049924d7e2de642f (patch) | |
tree | 6c10d3dda8d1e97437bceb88cc430addda56a011 /accel-pppd/auth/auth_mschap_v2.c | |
parent | fd379e46a8e41a1a41836922a376e462bb676b0f (diff) | |
download | accel-ppp-ebbd6f580322767983ebf6b4049924d7e2de642f.tar.gz accel-ppp-ebbd6f580322767983ebf6b4049924d7e2de642f.zip |
fix typo (successed -> succeeded)
Conflicts:
accel-pppd/ppp/ppp_auth.c
Diffstat (limited to 'accel-pppd/auth/auth_mschap_v2.c')
-rw-r--r-- | accel-pppd/auth/auth_mschap_v2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accel-pppd/auth/auth_mschap_v2.c b/accel-pppd/auth/auth_mschap_v2.c index ffb6fbf4..b8f346aa 100644 --- a/accel-pppd/auth/auth_mschap_v2.c +++ b/accel-pppd/auth/auth_mschap_v2.c @@ -36,7 +36,7 @@ static int conf_interval = 0; static int conf_max_failure = 3; static char *conf_msg_failure = "E=691 R=0 V=3"; static char *conf_msg_failure2 = "Authentication failure"; -static char *conf_msg_success = "Authentication successed"; +static char *conf_msg_success = "Authentication succeeded"; struct chap_hdr_t { @@ -396,7 +396,7 @@ static void chap_recv_response(struct chap_auth_data_t *ad, struct chap_hdr_t *h _free(name); } else { if (!ad->started) { - if (ppp_auth_successed(ad->ppp, name)) { + if (ppp_auth_succeeded(ad->ppp, name)) { chap_send_failure(ad, mschap_error, reply_msg); ap_session_terminate(&ad->ppp->ses, TERM_AUTH_ERROR, 0); _free(name); |