diff options
author | Peter Eisentraut | 2020-02-28 07:54:49 +0000 |
---|---|---|
committer | Peter Eisentraut | 2020-02-28 12:12:21 +0000 |
commit | 864934131ef72dc3a403ad1375a94543fcc04206 (patch) | |
tree | f18385c98a12e2fed752ebdbad859245a3e6d5bb /src/bin/pg_config | |
parent | afb5465e0cfce7637066eaaaeecab30b0f23fbe3 (diff) |
Refer to bug report address by symbol rather than hardcoding
Use the PACKAGE_BUGREPORT macro that is created by Autoconf for
referring to the bug reporting address rather than hardcoding it
everywhere. This makes it easier to change the address and it reduces
translation work.
Reviewed-by: Daniel Gustafsson <[email protected]>
Discussion: https://www.postgresql.org/message-id/flat/8d389c5f-7fb5-8e48-9a4a-68cec44786fa%402ndquadrant.com
Diffstat (limited to 'src/bin/pg_config')
-rw-r--r-- | src/bin/pg_config/pg_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_config/pg_config.c b/src/bin/pg_config/pg_config.c index 8ed4915fee6..9ff56e2fca4 100644 --- a/src/bin/pg_config/pg_config.c +++ b/src/bin/pg_config/pg_config.c @@ -102,7 +102,7 @@ help(void) printf(_(" --version show the PostgreSQL version\n")); printf(_(" -?, --help show this help, then exit\n")); printf(_("\nWith no arguments, all known items are shown.\n\n")); - printf(_("Report bugs to <[email protected]>.\n")); + printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT); } static void |