Commit 6bb0b08f authored by Peter Eisentraut's avatar Peter Eisentraut

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.
parent 7a42dff4
...@@ -1332,7 +1332,7 @@ main(int argc, char **argv) ...@@ -1332,7 +1332,7 @@ main(int argc, char **argv)
else else
{ {
fprintf(stderr, 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); progname, optarg);
exit(1); exit(1);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment