1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-21 02:52:47 +03:00

Assorted message improvements

This commit is contained in:
Peter Eisentraut
2014-08-29 00:01:34 -04:00
parent f41381e240
commit c573e9d776
8 changed files with 12 additions and 12 deletions

View File

@@ -6829,7 +6829,7 @@ AlterSystemSetConfigFile(AlterSystemStmt *altersysstmt)
if (rename(AutoConfTmpFileName, AutoConfFileName) < 0)
ereport(ERROR,
(errcode_for_file_access(),
errmsg("could not rename file \"%s\" to \"%s\" : %m",
errmsg("could not rename file \"%s\" to \"%s\": %m",
AutoConfTmpFileName, AutoConfFileName)));
}
PG_CATCH();