diff options
| author | Peter Eisentraut | 2012-08-27 04:49:39 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2012-08-27 04:51:59 +0000 |
| commit | 6bb0b08fe65de32c5d43c0f7c76bd34801ce5056 (patch) | |
| tree | 8f88729a74c9be8cb6853240ce3da69f95dccc5b /src | |
| parent | 7a42dff47e37e7cd7ba03a2ed6531f2d9a206e74 (diff) | |
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.
Diffstat (limited to 'src')
| -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 4fe716cfd2d..ad994f4fa2b 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -1332,7 +1332,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); } |
