From: Robert Haas Date: Mon, 18 May 2015 16:53:09 +0000 (-0400) Subject: Fix error message in pre_sync_fname. X-Git-Tag: REL9_4_2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=20affd62e22d5bbf2d945dd25920d1aa54844933;p=thirdparty%2Fpostgresql.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 295eeb040ae..448e3d45b37 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -2460,7 +2460,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);