Skip to content

Commit 7412f5c

Browse files
committed
Fix pg_upgrade status message capitalization mistake.
Backpatch to 9.1 and 9.0. Dan McGee
1 parent 3246a17 commit 7412f5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/pg_upgrade/check.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ output_check_banner(migratorContext *ctx, bool *live_check)
2828
if (ctx->old.port == ctx->new.port)
2929
pg_log(ctx, PG_FATAL, "When checking a live server, "
3030
"the old and new port numbers must be different.\n");
31-
pg_log(ctx, PG_REPORT, "PerForming Consistency Checks on Old Live Server\n");
31+
pg_log(ctx, PG_REPORT, "Performing Consistency Checks on Old Live Server\n");
3232
pg_log(ctx, PG_REPORT, "------------------------------------------------\n");
3333
}
3434
else

0 commit comments

Comments
 (0)