diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-12-22 07:21:40 +0100 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-12-22 07:21:40 +0100 |
commit | f4eabaf3e0f84d5eb3ebdeeff0a71cb8db4b1ff6 (patch) | |
tree | ef927745a6c8443e55e100b26a61214b375c672e | |
parent | c952eae52a33069e2e92d34f217b43d0eca3d7de (diff) | |
download | postgresql-f4eabaf3e0f84d5eb3ebdeeff0a71cb8db4b1ff6.tar.gz postgresql-f4eabaf3e0f84d5eb3ebdeeff0a71cb8db4b1ff6.zip |
Fix ancient compiler warnings and typos in !HAVE_SYMLINK code
This has never been correct since this code was introduced.
-rw-r--r-- | src/bin/initdb/initdb.c | 2 | ||||
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 211a96380ef..017c11bc948 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -2942,7 +2942,7 @@ create_xlog_or_symlink(void) exit_nicely(); } #else - fprintf(stderr, _("%s: symlinks are not supported on this platform")); + fprintf(stderr, _("%s: symlinks are not supported on this platform\n"), progname); exit_nicely(); #endif } diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 85c3812dd11..e4304c4a90a 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -2588,7 +2588,7 @@ main(int argc, char **argv) disconnect_and_exit(1); } #else - fprintf(stderr, _("%s: symlinks are not supported on this platform\n")); + fprintf(stderr, _("%s: symlinks are not supported on this platform\n"), progname); disconnect_and_exit(1); #endif free(linkloc); |