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_0_20~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=89c8fb65b22346f64849a719aea79a4f817193f0;p=postgresql 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 de71368366..89b1083560 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -2026,7 +2026,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);