aboutsummaryrefslogtreecommitdiff
path: root/src/bin/scripts/pg_isready.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2020-02-28 08:54:49 +0100
committerPeter Eisentraut <peter@eisentraut.org>2020-02-28 13:12:21 +0100
commit864934131ef72dc3a403ad1375a94543fcc04206 (patch)
treef18385c98a12e2fed752ebdbad859245a3e6d5bb /src/bin/scripts/pg_isready.c
parentafb5465e0cfce7637066eaaaeecab30b0f23fbe3 (diff)
downloadpostgresql-864934131ef72dc3a403ad1375a94543fcc04206.tar.gz
postgresql-864934131ef72dc3a403ad1375a94543fcc04206.zip
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 <daniel@yesql.se> Discussion: https://www.postgresql.org/message-id/flat/8d389c5f-7fb5-8e48-9a4a-68cec44786fa%402ndquadrant.com
Diffstat (limited to 'src/bin/scripts/pg_isready.c')
-rw-r--r--src/bin/scripts/pg_isready.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/scripts/pg_isready.c b/src/bin/scripts/pg_isready.c
index d9af2250b91..ead88a9b5a5 100644
--- a/src/bin/scripts/pg_isready.c
+++ b/src/bin/scripts/pg_isready.c
@@ -235,5 +235,5 @@ help(const char *progname)
printf(_(" -p, --port=PORT database server port\n"));
printf(_(" -t, --timeout=SECS seconds to wait when attempting connection, 0 disables (default: %s)\n"), DEFAULT_CONNECT_TIMEOUT);
printf(_(" -U, --username=USERNAME user name to connect as\n"));
- printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n"));
+ printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
}