1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-19 23:22:23 +03:00

Fix incorrect format placeholders

This commit is contained in:
Peter Eisentraut
2021-09-08 08:52:29 +02:00
parent 8bd5342740
commit bb1412baa5
3 changed files with 4 additions and 4 deletions

View File

@@ -1208,7 +1208,7 @@ build_server_first_message(scram_state *state)
state->server_nonce[encoded_len] = '\0';
state->server_first_message =
psprintf("r=%s%s,s=%s,i=%u",
psprintf("r=%s%s,s=%s,i=%d",
state->client_nonce, state->server_nonce,
state->salt, state->iterations);