@@ -900,7 +900,7 @@ static struct config_bool ConfigureNamesBool[] =
900900
901901{
902902{"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. " ),
904904NULL
905905},
906906& wal_log_hints ,
@@ -3504,7 +3504,7 @@ static struct config_enum ConfigureNamesEnum[] =
35043504
35053505{
35063506{"huge_pages" ,PGC_POSTMASTER ,RESOURCES_MEM ,
3507- gettext_noop ("Use of huge pages on Linux" ),
3507+ gettext_noop ("Use of huge pages on Linux. " ),
35083508NULL
35093509},
35103510& huge_pages ,
@@ -6608,7 +6608,7 @@ write_auto_conf_file(int fd, const char *filename, ConfigVariable **head_p)
66086608 */
66096609if (write (fd ,buf .data ,buf .len )< 0 )
66106610ereport (ERROR ,
6611- (errmsg ("failed to write to \"%s\" file " ,filename )));
6611+ (errmsg ("could not write tofile \"%s\": %m " ,filename )));
66126612resetStringInfo (& buf );
66136613
66146614/*
@@ -6633,7 +6633,7 @@ write_auto_conf_file(int fd, const char *filename, ConfigVariable **head_p)
66336633
66346634if (write (fd ,buf .data ,buf .len )< 0 )
66356635ereport (ERROR ,
6636- (errmsg ("failed to write to \"%s\" file " ,filename )));
6636+ (errmsg ("could not write tofile \"%s\": %m " ,filename )));
66376637resetStringInfo (& buf );
66386638}
66396639
@@ -6838,7 +6838,7 @@ AlterSystemSetConfigFile(AlterSystemStmt *altersysstmt)
68386838if (Tmpfd < 0 )
68396839ereport (ERROR ,
68406840(errcode_for_file_access (),
6841- errmsg ("failed to open auto conf temp file \"%s\": %m" ,
6841+ errmsg ("could not open file \"%s\": %m" ,
68426842AutoConfTmpFileName )));
68436843
68446844PG_TRY ();
@@ -6856,8 +6856,8 @@ AlterSystemSetConfigFile(AlterSystemStmt *altersysstmt)
68566856infile = AllocateFile (AutoConfFileName ,"r" );
68576857if (infile == NULL )
68586858ereport (ERROR ,
6859- (errmsg ("failed to open auto conf file \"%s\": %m" ,
6860- AutoConfFileName )));
6859+ (errmsg ("could not open file \"%s\": %m" ,
6860+ AutoConfFileName )));
68616861
68626862/* parse it */
68636863ParseConfigFp (infile ,AutoConfFileName ,0 ,LOG ,& head ,& tail );