summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStephen Frost <sfrost@snowman.net>2017-01-09 23:09:35 -0500
committerStephen Frost <sfrost@snowman.net>2017-01-09 23:09:35 -0500
commitf12681079020eea53ea9a0eb994ac2ee6190770f (patch)
treeff767f7d9d02e118f5f80b51ac2e6779d458e41d /src
parent4d4ab6ccd8a24a91ef9fc1904f0e80a2fd0377fe (diff)
Fix invalid-parallel-jobs error message
Including the program name twice is not helpful: -> pg_dump -j -1 pg_dump: pg_dump: invalid number of parallel jobs Correct by removing the progname from the exit_horribly() call used when validating the number of parallel jobs. Noticed while testing various pg_dump error cases. Back-patch to 9.3 where parallel pg_dump was added.
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_dump/pg_dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index cd67082a8f4..dd5e547483e 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -606,7 +606,7 @@ main(int argc, char **argv)
|| numWorkers > MAXIMUM_WAIT_OBJECTS
#endif
)
- exit_horribly(NULL, "%s: invalid number of parallel jobs\n", progname);
+ exit_horribly(NULL, "invalid number of parallel jobs\n");
/* Parallel backup only in the directory archive format so far */
if (archiveFormat != archDirectory && numWorkers > 1)