summaryrefslogtreecommitdiff
path: root/src/backend/main/main.c
diff options
context:
space:
mode:
authorPeter Eisentraut2020-02-28 07:54:49 +0000
committerPeter Eisentraut2020-02-28 12:12:21 +0000
commit864934131ef72dc3a403ad1375a94543fcc04206 (patch)
treef18385c98a12e2fed752ebdbad859245a3e6d5bb /src/backend/main/main.c
parentafb5465e0cfce7637066eaaaeecab30b0f23fbe3 (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/backend/main/main.c')
-rw-r--r--src/backend/main/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/main/main.c b/src/backend/main/main.c
index c0d1fcde065..1bb4ae03b8a 100644
--- a/src/backend/main/main.c
+++ b/src/backend/main/main.c
@@ -359,7 +359,7 @@ help(const char *progname)
printf(_("\nPlease read the documentation for the complete list of run-time\n"
"configuration settings and how to set them on the command line or in\n"
"the configuration file.\n\n"
- "Report bugs to <[email protected]>.\n"));
+ "Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
}