diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-03-27 19:52:39 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-03-27 19:52:39 +0300 |
commit | dd024c22f1fff083065b42af555a3552721fabfd (patch) | |
tree | f4c5b211d3c7102e7234db014624f75d6e537501 /src | |
parent | 206bec11bd9214873e3703898958789324480b1f (diff) | |
download | postgresql-dd024c22f1fff083065b42af555a3552721fabfd.tar.gz postgresql-dd024c22f1fff083065b42af555a3552721fabfd.zip |
pg_dump: Small message adjustment for consistency
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_backup_custom.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |