mirror of
https://github.com/postgres/postgres.git
synced 2025-07-14 08:21:07 +03:00
Fix typo in version-mismatch error report.
This commit is contained in:
@ -115,7 +115,7 @@ _check_database_version(ArchiveHandle *AH, bool ignoreVersion)
|
|||||||
if (myversion != remoteversion)
|
if (myversion != remoteversion)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Database version: %s\n%s version: %s\n",
|
fprintf(stderr, "Database version: %s\n%s version: %s\n",
|
||||||
progname, remoteversion_str, PG_VERSION);
|
remoteversion_str, progname, PG_VERSION);
|
||||||
if (ignoreVersion)
|
if (ignoreVersion)
|
||||||
fprintf(stderr, "Proceeding despite version mismatch.\n");
|
fprintf(stderr, "Proceeding despite version mismatch.\n");
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user