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
commit4009571695a28302da8bcc0b404238f26c19ad6f (patch)
tree093048e0806d95c30a31c0dcb4c78e67482564b4
parent91d97462c96e07a6885261c9d46554b1c4ce834b (diff)
downloadpostgresql-4009571695a28302da8bcc0b404238f26c19ad6f.tar.gz
postgresql-4009571695a28302da8bcc0b404238f26c19ad6f.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 1a51b5cae12..7568bc1c0d3 100644
--- a/src/bin/pg_dump/pg_backup_directory.c
+++ b/src/bin/pg_dump/pg_backup_directory.c
@@ -411,8 +411,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));
}
/*