1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-12 16:21:30 +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
{
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);
exit(1);
}