diff options
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index e541b16bdbe..81cb585891b 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -1419,7 +1419,8 @@ PostmasterMain(int argc, char *argv[]) * since there is no way to connect to the database in this case. */ ereport(FATAL, - (errmsg("could not load pg_hba.conf"))); + /* translator: %s is a configuration file */ + (errmsg("could not load %s", HbaFileName))); } if (!load_ident()) { @@ -2769,11 +2770,11 @@ SIGHUP_handler(SIGNAL_ARGS) if (!load_hba()) ereport(LOG, /* translator: %s is a configuration file */ - (errmsg("%s was not reloaded", "pg_hba.conf"))); + (errmsg("%s was not reloaded", HbaFileName))); if (!load_ident()) ereport(LOG, - (errmsg("%s was not reloaded", "pg_ident.conf"))); + (errmsg("%s was not reloaded", IdentFileName))); #ifdef USE_SSL /* Reload SSL configuration as well */ |