1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-15 19:15:29 +03:00

Replace reference to "xlog-method" with "wal-method" in error message.

Commit 62e8b38 renamed "--xlog-method" option for pg_basebackup to
"--wal-method", but forgot to update the error message mentioning that option.
This commit is contained in:
Fujii Masao 2017-02-15 01:25:48 +09:00
parent 0ede57a1a5
commit 0dfa89ba29

View File

@ -2170,7 +2170,7 @@ main(int argc, char **argv)
else else
{ {
fprintf(stderr, fprintf(stderr,
_("%s: invalid xlog-method option \"%s\", must be \"fetch\", \"stream\" or \"none\"\n"), _("%s: invalid wal-method option \"%s\", must be \"fetch\", \"stream\" or \"none\"\n"),
progname, optarg); progname, optarg);
exit(1); exit(1);
} }