diff options
author | Fujii Masao <fujii@postgresql.org> | 2014-03-18 21:15:45 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2014-03-18 21:15:45 +0900 |
commit | e726e59dc4845fff1e0e5849ef8d0bae958002fd (patch) | |
tree | fe73934aa177d52ccc2173eac68a9f2234107977 /src | |
parent | 79a4d24f31e09eb3c421deb34829eee0bf6acd67 (diff) | |
download | postgresql-e726e59dc4845fff1e0e5849ef8d0bae958002fd.tar.gz postgresql-e726e59dc4845fff1e0e5849ef8d0bae958002fd.zip |
Fix help message and document in pg_receivexlog.
Add SLOTNAME placeholder to --slot option in help message and
document.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_basebackup/pg_receivexlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_receivexlog.c b/src/bin/pg_basebackup/pg_receivexlog.c index 2478789ca21..c233779b89c 100644 --- a/src/bin/pg_basebackup/pg_receivexlog.c +++ b/src/bin/pg_basebackup/pg_receivexlog.c @@ -74,7 +74,7 @@ usage(void) printf(_(" -U, --username=NAME connect as specified database user\n")); printf(_(" -w, --no-password never prompt for password\n")); printf(_(" -W, --password force password prompt (should happen automatically)\n")); - printf(_(" --slot replication slot to use\n")); + printf(_(" --slot=SLOTNAME replication slot to use\n")); printf(_("\nReport bugs to <pgsql-bugs@postgresql.org>.\n")); } |