From: Robert Haas Date: Mon, 18 May 2015 16:53:09 +0000 (-0400) Subject: Fix error message in pre_sync_fname. X-Git-Tag: XL9_5_R1BETA1~284^2~78 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=922de19ef25e559b1a7ad5c583ee4439e53cae98;p=postgres-xl.git Fix error message in pre_sync_fname. The old one didn't include %m anywhere, and required extra translation. Report by Peter Eisentraut. Fix by me. Review by Tom Lane. --- diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 6fa75d18d3..bed8478dd1 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -2461,7 +2461,7 @@ pre_sync_fname(char *fname, bool isdir) if (fd < 0) ereport(FATAL, - (errmsg("could not open file \"%s\" before fsync", + (errmsg("could not open file \"%s\": %m", fname))); pg_flush_data(fd, 0, 0);