From dd024c22f1fff083065b42af555a3552721fabfd Mon Sep 17 00:00:00 2001 From: Peter Eisentraut <peter_e@gmx.net> Date: Tue, 27 Mar 2012 19:52:39 +0300 Subject: [PATCH] pg_dump: Small message adjustment for consistency --- src/bin/pg_dump/pg_backup_custom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_backup_custom.c b/src/bin/pg_dump/pg_backup_custom.c index 87242c5560b..18d158ff6d4 100644 --- a/src/bin/pg_dump/pg_backup_custom.c +++ b/src/bin/pg_dump/pg_backup_custom.c @@ -738,7 +738,7 @@ _ReopenArchive(ArchiveHandle *AH) * (but not invalid) use-cases. Word the error messages appropriately. */ if (AH->fSpec == NULL || strcmp(AH->fSpec, "") == 0) - exit_horribly(modulename, "parallel restore from stdin is not supported\n"); + exit_horribly(modulename, "parallel restore from standard input is not supported\n"); if (!ctx->hasSeek) exit_horribly(modulename, "parallel restore from non-seekable file is not supported\n"); -- GitLab