Fix ancient compiler warnings and typos in !HAVE_SYMLINK code

This has never been correct since this code was introduced.
pull/35/head
Peter Eisentraut 7 years ago
parent c952eae52a
commit f4eabaf3e0
  1. 2
      src/bin/initdb/initdb.c
  2. 2
      src/bin/pg_basebackup/pg_basebackup.c

@ -2942,7 +2942,7 @@ create_xlog_or_symlink(void)
exit_nicely(); exit_nicely();
} }
#else #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(); exit_nicely();
#endif #endif
} }

@ -2588,7 +2588,7 @@ main(int argc, char **argv)
disconnect_and_exit(1); disconnect_and_exit(1);
} }
#else #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); disconnect_and_exit(1);
#endif #endif
free(linkloc); free(linkloc);

Loading…
Cancel
Save