From 7412f5cd29b8da364e88f5a63a17c8573dbad73b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 22 Jun 2011 14:49:09 -0400 Subject: [PATCH] Fix pg_upgrade status message capitalization mistake. Backpatch to 9.1 and 9.0. Dan McGee --- contrib/pg_upgrade/check.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pg_upgrade/check.c b/contrib/pg_upgrade/check.c index 3a2922681c..37c38c1b97 100644 --- a/contrib/pg_upgrade/check.c +++ b/contrib/pg_upgrade/check.c @@ -28,7 +28,7 @@ output_check_banner(migratorContext *ctx, bool *live_check) if (ctx->old.port == ctx->new.port) pg_log(ctx, PG_FATAL, "When checking a live server, " "the old and new port numbers must be different.\n"); - pg_log(ctx, PG_REPORT, "PerForming Consistency Checks on Old Live Server\n"); + pg_log(ctx, PG_REPORT, "Performing Consistency Checks on Old Live Server\n"); pg_log(ctx, PG_REPORT, "------------------------------------------------\n"); } else -- 2.50.1