diff options
-rw-r--r-- | accel-pppd/auth/auth_chap_md5.c | 4 | ||||
-rw-r--r-- | accel-pppd/auth/auth_mschap_v1.c | 4 | ||||
-rw-r--r-- | accel-pppd/auth/auth_mschap_v2.c | 4 |
3 files changed, 3 insertions, 9 deletions
diff --git a/accel-pppd/auth/auth_chap_md5.c b/accel-pppd/auth/auth_chap_md5.c index 9abf8ce..632a283 100644 --- a/accel-pppd/auth/auth_chap_md5.c +++ b/accel-pppd/auth/auth_chap_md5.c @@ -162,10 +162,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) diff --git a/accel-pppd/auth/auth_mschap_v1.c b/accel-pppd/auth/auth_mschap_v1.c index 014a727..9648e0b 100644 --- a/accel-pppd/auth/auth_mschap_v1.c +++ b/accel-pppd/auth/auth_mschap_v1.c @@ -163,10 +163,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) diff --git a/accel-pppd/auth/auth_mschap_v2.c b/accel-pppd/auth/auth_mschap_v2.c index 7e5ed55..cc828ae 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) |