aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2020-05-08 19:38:46 -0400
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2020-05-08 19:38:46 -0400
commitf8635747ee9c07844819075675b2c5c07a7e016e (patch)
tree0062f7b3e69c3caf13e71fc3e68220f30b6845de
parentb50712ba7530361a345ae01e5d929b3e6f46a0dc (diff)
downloadpostgresql-f8635747ee9c07844819075675b2c5c07a7e016e.tar.gz
postgresql-f8635747ee9c07844819075675b2c5c07a7e016e.zip
pg_restore: Provide file name with one failure message
Almost all error messages already include file name where relevant, but this one had been overlooked. Repair. Backpatch to 9.5. Author: Euler Taveira <euler.taveira@2ndquadrant.com> Discussion: https://postgr.es/m/CAH503wA_VOrcKL_43p9atRejCDYmOZ8MzfK9S6TJrQqBqNeAXA@mail.gmail.com Reviewed-by: Álvaro Herrera <alvherre@alvh.no-ip.org>
-rw-r--r--src/bin/pg_dump/pg_backup_directory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_backup_directory.c b/src/bin/pg_dump/pg_backup_directory.c
index 112fbb0f0c8..1caf89598a3 100644
--- a/src/bin/pg_dump/pg_backup_directory.c
+++ b/src/bin/pg_dump/pg_backup_directory.c
@@ -406,8 +406,8 @@ _PrintFileData(ArchiveHandle *AH, char *filename)
free(buf);
if (cfclose(cfp) !=0)
- exit_horribly(modulename, "could not close data file: %s\n",
- strerror(errno));
+ exit_horribly(modulename, "could not close data file \"%s\": %s\n",
+ filename, strerror(errno));
}
/*