diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-08-27 00:49:39 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-08-27 00:50:32 -0400 |
commit | 81bcc8bc4ca6335f0b5b2029ebe84fbd788556fe (patch) | |
tree | 78fbe3f32186e78504e10520bc7f93fc25a1a6ed /src | |
parent | 019498f0c8f00138eadc98ecda69645929011364 (diff) | |
download | postgresql-81bcc8bc4ca6335f0b5b2029ebe84fbd788556fe.tar.gz postgresql-81bcc8bc4ca6335f0b5b2029ebe84fbd788556fe.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index cbefdf4fef8..bddd3718d44 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -1325,7 +1325,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); } |