From: Nick Porter Date: Thu, 2 May 2024 11:07:37 +0000 (+0100) Subject: Typo X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b4225749ed4da613b2408a8ce766ed70ee4c987;p=thirdparty%2Ffreeradius-server.git Typo --- diff --git a/src/modules/rlm_totp/totp.c b/src/modules/rlm_totp/totp.c index 76f4c30578c..681eebdea02 100644 --- a/src/modules/rlm_totp/totp.c +++ b/src/modules/rlm_totp/totp.c @@ -163,7 +163,7 @@ int fr_totp_cmp(fr_totp_t const *cfg, request_t *request, time_t now, uint8_t co */ if ((then < now) && (i <= cfg->lookforward_steps)) { forwards: - then = now + offset; + then = now + diff; goto repeat; } }