1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-03 22:24:49 +03:00

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.
This commit is contained in:
Peter Eisentraut 2012-08-27 00:49:39 -04:00
parent 019498f0c8
commit 81bcc8bc4c

View File

@ -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);
}