From: Peter Eisentraut Date: Mon, 27 Aug 2012 04:49:39 +0000 (-0400) Subject: pg_basebackup: Correct error message X-Git-Tag: REL9_3_BETA1~1023 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6bb0b08fe65de32c5d43c0f7c76bd34801ce5056;p=postgresql pg_basebackup: Correct error message It still thought that the --xlog-method option argument could be empty, as in a previous version of this feature. --- diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 4fe716cfd2..ad994f4fa2 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -1332,7 +1332,7 @@ main(int argc, char **argv) else { fprintf(stderr, - _("%s: invalid xlog-method option \"%s\", must be empty, \"fetch\", or \"stream\"\n"), + _("%s: invalid xlog-method option \"%s\", must be \"fetch\" or \"stream\"\n"), progname, optarg); exit(1); }