]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
quiet things some more
authorAlan T. DeKok <aland@freeradius.org>
Tue, 20 Jun 2023 16:11:31 +0000 (12:11 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 20 Jun 2023 16:11:31 +0000 (12:11 -0400)
src/modules/rlm_totp/rlm_totp.c

index 5f038f785873dde2d87787f3fc47839c0dbc8692..98804e4c9d505fb0e861759bad1cc90542b6d6b4 100644 (file)
@@ -203,7 +203,7 @@ static int totp_cmp(TESTING_UNUSED REQUEST *request, time_t now, uint8_t const *
         */
        snprintf(buffer, sizeof(buffer), PRINT, challenge % DIV);
 
-       RDEBUG3("Time %lu", (uint64_t) now);
+       RDEBUG3("Time %zu", (size_t) now);
        RDEBUG3("Expected %s", buffer);
        RDEBUG3("Received %s", totp);