1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-09 06:21:09 +03:00

Small message fixes

This commit is contained in:
Peter Eisentraut
2014-08-09 00:07:00 -04:00
parent 3dad73e71f
commit f25e0bf5e0
10 changed files with 13 additions and 13 deletions

View File

@@ -1123,13 +1123,13 @@ update_tablespace_symlink(Oid oid, const char *old_dir)
if (unlink(linkloc) != 0 && errno != ENOENT)
{
fprintf(stderr, _("%s: could not remove symbolic link \"%s\": %s"),
fprintf(stderr, _("%s: could not remove symbolic link \"%s\": %s\n"),
progname, linkloc, strerror(errno));
disconnect_and_exit(1);
}
if (symlink(new_dir, linkloc) != 0)
{
fprintf(stderr, _("%s: could not create symbolic link \"%s\": %s"),
fprintf(stderr, _("%s: could not create symbolic link \"%s\": %s\n"),
progname, linkloc, strerror(errno));
disconnect_and_exit(1);
}