aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/port/chklocale.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/port/chklocale.c b/src/port/chklocale.c
index 915821a4e91..fa4f74d6107 100644
--- a/src/port/chklocale.c
+++ b/src/port/chklocale.c
@@ -290,8 +290,7 @@ pg_codepage_to_encoding(UINT cp)
return encoding_match_list[i].pg_enc_code;
ereport(WARNING,
- (errmsg("could not determine encoding for codeset \"%s\"", sys),
- errdetail("Please report this to <pgsql-bugs@postgresql.org>.")));
+ (errmsg("could not determine encoding for codeset \"%s\"", sys)));
return -1;
}
@@ -419,8 +418,7 @@ pg_get_encoding_from_locale(const char *ctype, bool write_message)
#else
ereport(WARNING,
(errmsg("could not determine encoding for locale \"%s\": codeset is \"%s\"",
- ctype, sys),
- errdetail("Please report this to <pgsql-bugs@postgresql.org>.")));
+ ctype, sys)));
#endif
}