diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2014-07-11 14:29:41 +0400 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2014-07-11 15:09:45 +0400 |
commit | d4ec7aa1e550b1e604cafa3080d43fd49e99c0cf (patch) | |
tree | 1056756e2271bccc57cc0448ac0597bb0258878d /accel-pppd/auth/auth_mschap_v2.c | |
parent | e6ef0ff6cecbc3aefd3b8259e049e7761f9310ca (diff) | |
download | accel-ppp-d4ec7aa1e550b1e604cafa3080d43fd49e99c0cf.tar.gz accel-ppp-d4ec7aa1e550b1e604cafa3080d43fd49e99c0cf.zip |
auth: do not decrement id on retransmit1.7
Diffstat (limited to 'accel-pppd/auth/auth_mschap_v2.c')
-rw-r--r-- | accel-pppd/auth/auth_mschap_v2.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/accel-pppd/auth/auth_mschap_v2.c b/accel-pppd/auth/auth_mschap_v2.c index 7e5ed558..cc828ae5 100644 --- a/accel-pppd/auth/auth_mschap_v2.c +++ b/accel-pppd/auth/auth_mschap_v2.c @@ -166,10 +166,8 @@ static void chap_timeout_timer(struct triton_timer_t *t) ppp_terminate(d->ppp, TERM_USER_ERROR, 0); else ppp_auth_failed(d->ppp, NULL); - } else { - --d->id; + } else chap_send_challenge(d, 0); - } } static void chap_restart_timer(struct triton_timer_t *t) |