Commit dbaa069a authored by edelangh's avatar edelangh Committed by Rich Salz
Browse files

use OSSLzu instead of lu format for size_t display

parent d7345822
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -555,8 +555,8 @@ static char *shacrypt(const char *passwd, const char *magic, const char *salt)
    OPENSSL_strlcat(out_buf, magic, sizeof out_buf);
    OPENSSL_strlcat(out_buf, "$", sizeof out_buf);
    if (rounds_custom) {
        char tmp_buf[7 + 9 + 1]; /* "rounds=999999999" */
        sprintf(tmp_buf, "rounds=%lu", rounds);
        char tmp_buf[80]; /* "rounds=999999999" */
        sprintf(tmp_buf, "rounds=%"OSSLzu, rounds);
        OPENSSL_strlcat(out_buf, tmp_buf, sizeof out_buf);
        OPENSSL_strlcat(out_buf, "$", sizeof out_buf);
    }