diff options
| author | Peter Eisentraut | 2014-08-09 04:07:00 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2014-08-09 04:07:00 +0000 |
| commit | f25e0bf5e0af01a687395a76e676dadeb4a60d0a (patch) | |
| tree | 00557e67e01f2fb0f88a9d5d3be2fa77aa643bd7 /src/bin/pg_basebackup | |
| parent | 3dad73e71f08abd86564d5090a58ca71740e07e0 (diff) | |
Small message fixes
Diffstat (limited to 'src/bin/pg_basebackup')
| -rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 0b02c4c4014..3d26e22b8fc 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -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); } |
