diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-08-09 00:07:00 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-08-09 00:07:00 -0400 |
commit | f25e0bf5e0af01a687395a76e676dadeb4a60d0a (patch) | |
tree | 00557e67e01f2fb0f88a9d5d3be2fa77aa643bd7 /src/bin/pg_dump/pg_backup_tar.c | |
parent | 3dad73e71f08abd86564d5090a58ca71740e07e0 (diff) |
Small message fixes
Diffstat (limited to 'src/bin/pg_dump/pg_backup_tar.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup_tar.c b/src/bin/pg_dump/pg_backup_tar.c index aa06503fb04..457b742fa48 100644 --- a/src/bin/pg_dump/pg_backup_tar.c +++ b/src/bin/pg_dump/pg_backup_tar.c @@ -1083,7 +1083,7 @@ _tarAddFile(ArchiveHandle *AH, TAR_MEMBER *th) fseeko(tmp, 0, SEEK_END); th->fileLen = ftello(tmp); if (th->fileLen < 0) - exit_horribly(modulename, "could not determine seek position in file: %s\n", + exit_horribly(modulename, "could not determine seek position in archive file: %s\n", strerror(errno)); fseeko(tmp, 0, SEEK_SET); |