diff options
author | Stephen Frost <sfrost@snowman.net> | 2017-01-09 23:09:39 -0500 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2017-01-09 23:09:39 -0500 |
commit | 7cda702363e8bfb61409bb8cbae13689b19f1648 (patch) | |
tree | 66a05e5b442cf105b7f694e78656fa96d48cc33b /src | |
parent | a8191800a6e63e8f4a61e6c3eccdfb428eb085d8 (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.c | 2 |
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 466a3739857..977371a1e47 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -623,7 +623,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) |