summaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/pg_backup_tar.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2014-08-09 00:07:00 -0400
committerPeter Eisentraut <peter_e@gmx.net>2014-08-09 00:07:00 -0400
commitf25e0bf5e0af01a687395a76e676dadeb4a60d0a (patch)
tree00557e67e01f2fb0f88a9d5d3be2fa77aa643bd7 /src/bin/pg_dump/pg_backup_tar.c
parent3dad73e71f08abd86564d5090a58ca71740e07e0 (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.c2
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);