mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Improve various new-to-v18 appendStringInfo calls
Similar to 8461424fd
, here we adjust a few new locations which were not
using the most suitable appendStringInfo* function for the intended
purpose.
Author: David Rowley <drowleyml@gmail.com
Discussion: https://postgr.es/m/CAApHDvqJnNjueb=Eoj8K+8n0g7nj_AcPWSiCj5RNV4fDejAfqA@mail.gmail.com
This commit is contained in:
@ -3228,7 +3228,7 @@ appendSCRAMKeysInfo(StringInfo buf)
|
||||
|
||||
appendStringInfo(buf, "scram_client_key='%s' ", client_key);
|
||||
appendStringInfo(buf, "scram_server_key='%s' ", server_key);
|
||||
appendStringInfo(buf, "require_auth='scram-sha-256' ");
|
||||
appendStringInfoString(buf, "require_auth='scram-sha-256' ");
|
||||
|
||||
pfree(client_key);
|
||||
pfree(server_key);
|
||||
|
Reference in New Issue
Block a user