From 6bb0b08fe65de32c5d43c0f7c76bd34801ce5056 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 27 Aug 2012 00:49:39 -0400 Subject: [PATCH] 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. --- src/bin/pg_basebackup/pg_basebackup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.40.0