mirror of
https://github.com/postgres/postgres.git
synced 2026-04-09 19:16:17 -04:00
Fix typo in version-mismatch error report.
This commit is contained in:
parent
421f0baaff
commit
cf14ccd0ea
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ _check_database_version(ArchiveHandle *AH, bool ignoreVersion)
|
|||
if (myversion != remoteversion)
|
||||
{
|
||||
fprintf(stderr, "Database version: %s\n%s version: %s\n",
|
||||
progname, remoteversion_str, PG_VERSION);
|
||||
remoteversion_str, progname, PG_VERSION);
|
||||
if (ignoreVersion)
|
||||
fprintf(stderr, "Proceeding despite version mismatch.\n");
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue