diff options
author | Fujii Masao <fujii@postgresql.org> | 2017-02-15 01:25:48 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2017-02-15 01:26:44 +0900 |
commit | 0dfa89ba2992b1be86ad3a5523a8d26dce31a08c (patch) | |
tree | 58fcb60fd6e4ceda8242501e824587d569467bae | |
parent | 0ede57a1a5161012f8f4a55049ef24c987d5b59c (diff) | |
download | postgresql-0dfa89ba2992b1be86ad3a5523a8d26dce31a08c.tar.gz postgresql-0dfa89ba2992b1be86ad3a5523a8d26dce31a08c.zip |
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.
-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 b6463faff96..0c82bc929ef 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -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); } |