@@ -900,7 +900,7 @@ static struct config_bool ConfigureNamesBool[] =
900
900
901
901
{
902
902
{"wal_log_hints" ,PGC_POSTMASTER ,WAL_SETTINGS ,
903
- gettext_noop ("Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modifications" ),
903
+ gettext_noop ("Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modifications. " ),
904
904
NULL
905
905
},
906
906
& wal_log_hints ,
@@ -3504,7 +3504,7 @@ static struct config_enum ConfigureNamesEnum[] =
3504
3504
3505
3505
{
3506
3506
{"huge_pages" ,PGC_POSTMASTER ,RESOURCES_MEM ,
3507
- gettext_noop ("Use of huge pages on Linux" ),
3507
+ gettext_noop ("Use of huge pages on Linux. " ),
3508
3508
NULL
3509
3509
},
3510
3510
& huge_pages ,
@@ -6608,7 +6608,7 @@ write_auto_conf_file(int fd, const char *filename, ConfigVariable **head_p)
6608
6608
*/
6609
6609
if (write (fd ,buf .data ,buf .len )< 0 )
6610
6610
ereport (ERROR ,
6611
- (errmsg ("failed to write to \"%s\" file " ,filename )));
6611
+ (errmsg ("could not write tofile \"%s\": %m " ,filename )));
6612
6612
resetStringInfo (& buf );
6613
6613
6614
6614
/*
@@ -6633,7 +6633,7 @@ write_auto_conf_file(int fd, const char *filename, ConfigVariable **head_p)
6633
6633
6634
6634
if (write (fd ,buf .data ,buf .len )< 0 )
6635
6635
ereport (ERROR ,
6636
- (errmsg ("failed to write to \"%s\" file " ,filename )));
6636
+ (errmsg ("could not write tofile \"%s\": %m " ,filename )));
6637
6637
resetStringInfo (& buf );
6638
6638
}
6639
6639
@@ -6838,7 +6838,7 @@ AlterSystemSetConfigFile(AlterSystemStmt *altersysstmt)
6838
6838
if (Tmpfd < 0 )
6839
6839
ereport (ERROR ,
6840
6840
(errcode_for_file_access (),
6841
- errmsg ("failed to open auto conf temp file \"%s\": %m" ,
6841
+ errmsg ("could not open file \"%s\": %m" ,
6842
6842
AutoConfTmpFileName )));
6843
6843
6844
6844
PG_TRY ();
@@ -6856,8 +6856,8 @@ AlterSystemSetConfigFile(AlterSystemStmt *altersysstmt)
6856
6856
infile = AllocateFile (AutoConfFileName ,"r" );
6857
6857
if (infile == NULL )
6858
6858
ereport (ERROR ,
6859
- (errmsg ("failed to open auto conf file \"%s\": %m" ,
6860
- AutoConfFileName )));
6859
+ (errmsg ("could not open file \"%s\": %m" ,
6860
+ AutoConfFileName )));
6861
6861
6862
6862
/* parse it */
6863
6863
ParseConfigFp (infile ,AutoConfFileName ,0 ,LOG ,& head ,& tail );