Commit 86493413 authored by Peter Eisentraut's avatar Peter Eisentraut

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: default avatarDaniel Gustafsson <daniel@yesql.se>
Discussion: https://www.postgresql.org/message-id/flat/8d389c5f-7fb5-8e48-9a4a-68cec44786fa%402ndquadrant.com
parent afb5465e
...@@ -79,7 +79,7 @@ PostgreSQL has apparently not been ported to your platform yet. ...@@ -79,7 +79,7 @@ PostgreSQL has apparently not been ported to your platform yet.
To try a manual configuration, look into the src/template directory To try a manual configuration, look into the src/template directory
for a similar platform and use the '--with-template=' option. for a similar platform and use the '--with-template=' option.
Please also contact <pgsql-bugs@lists.postgresql.org> to see about Please also contact <]AC_PACKAGE_BUGREPORT[> to see about
rectifying this. Include the above 'checking host system type...' rectifying this. Include the above 'checking host system type...'
line. line.
******************************************************************* *******************************************************************
......
...@@ -219,8 +219,8 @@ help(const char *progname) ...@@ -219,8 +219,8 @@ help(const char *progname)
" -p, --port=PORT database server port number\n" " -p, --port=PORT database server port number\n"
" -U, --username=USERNAME connect as specified database user\n" " -U, --username=USERNAME connect as specified database user\n"
"\nThe default action is to show all database OIDs.\n\n" "\nThe default action is to show all database OIDs.\n\n"
"Report bugs to <pgsql-bugs@lists.postgresql.org>.\n", "Report bugs to <%s>.\n",
progname, progname); progname, progname, PACKAGE_BUGREPORT);
} }
/* /*
......
...@@ -612,7 +612,7 @@ usage(void) ...@@ -612,7 +612,7 @@ usage(void)
" restore_command = 'pg_standby [OPTION]... ARCHIVELOCATION %%f %%p %%r'\n" " restore_command = 'pg_standby [OPTION]... ARCHIVELOCATION %%f %%p %%r'\n"
"e.g.\n" "e.g.\n"
" restore_command = 'pg_standby /mnt/server/archiverdir %%f %%p %%r'\n"); " restore_command = 'pg_standby /mnt/server/archiverdir %%f %%p %%r'\n");
printf("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n"); printf("\nReport bugs to <%s>.\n", PACKAGE_BUGREPORT);
} }
#ifndef WIN32 #ifndef WIN32
......
...@@ -436,7 +436,7 @@ usage(const char *progname) ...@@ -436,7 +436,7 @@ usage(const char *progname)
printf(" -w, --no-password never prompt for password\n"); printf(" -w, --no-password never prompt for password\n");
printf(" -W, --password force password prompt\n"); printf(" -W, --password force password prompt\n");
printf("\n"); printf("\n");
printf("Report bugs to <pgsql-bugs@lists.postgresql.org>.\n"); printf("Report bugs to <%s>.\n", PACKAGE_BUGREPORT);
} }
......
...@@ -359,7 +359,7 @@ help(const char *progname) ...@@ -359,7 +359,7 @@ help(const char *progname)
printf(_("\nPlease read the documentation for the complete list of run-time\n" 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" "configuration settings and how to set them on the command line or in\n"
"the configuration file.\n\n" "the configuration file.\n\n"
"Report bugs to <pgsql-bugs@lists.postgresql.org>.\n")); "Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
......
...@@ -5141,7 +5141,7 @@ ExitPostmaster(int status) ...@@ -5141,7 +5141,7 @@ ExitPostmaster(int status)
ereport(LOG, ereport(LOG,
(errcode(ERRCODE_INTERNAL_ERROR), (errcode(ERRCODE_INTERNAL_ERROR),
errmsg_internal("postmaster became multithreaded"), errmsg_internal("postmaster became multithreaded"),
errdetail("Please report this to <pgsql-bugs@lists.postgresql.org>."))); errdetail("Please report this to <%s>.", PACKAGE_BUGREPORT)));
#endif #endif
/* should cleanup shared memory and kill all backends */ /* should cleanup shared memory and kill all backends */
......
...@@ -2322,7 +2322,7 @@ usage(const char *progname) ...@@ -2322,7 +2322,7 @@ usage(const char *progname)
printf(_(" -?, --help show this help, then exit\n")); printf(_(" -?, --help show this help, then exit\n"));
printf(_("\nIf the data directory is not specified, the environment variable PGDATA\n" printf(_("\nIf the data directory is not specified, the environment variable PGDATA\n"
"is used.\n")); "is used.\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
static void static void
......
...@@ -269,7 +269,7 @@ usage(void) ...@@ -269,7 +269,7 @@ usage(void)
"Or for use as a standalone archive cleaner:\n" "Or for use as a standalone archive cleaner:\n"
"e.g.\n" "e.g.\n"
" pg_archivecleanup /mnt/server/archiverdir 000000010000000000000010.00000020.backup\n")); " pg_archivecleanup /mnt/server/archiverdir 000000010000000000000010.00000020.backup\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
/*------------ MAIN ----------------------------------------*/ /*------------ MAIN ----------------------------------------*/
......
...@@ -396,7 +396,7 @@ usage(void) ...@@ -396,7 +396,7 @@ usage(void)
printf(_(" -U, --username=NAME connect as specified database user\n")); printf(_(" -U, --username=NAME connect as specified database user\n"));
printf(_(" -w, --no-password never prompt for password\n")); printf(_(" -w, --no-password never prompt for password\n"));
printf(_(" -W, --password force password prompt (should happen automatically)\n")); printf(_(" -W, --password force password prompt (should happen automatically)\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
......
...@@ -102,7 +102,7 @@ usage(void) ...@@ -102,7 +102,7 @@ usage(void)
printf(_("\nOptional actions:\n")); printf(_("\nOptional actions:\n"));
printf(_(" --create-slot create a new replication slot (for the slot's name see --slot)\n")); printf(_(" --create-slot create a new replication slot (for the slot's name see --slot)\n"));
printf(_(" --drop-slot drop the replication slot (for the slot's name see --slot)\n")); printf(_(" --drop-slot drop the replication slot (for the slot's name see --slot)\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
static bool static bool
......
...@@ -103,7 +103,7 @@ usage(void) ...@@ -103,7 +103,7 @@ usage(void)
printf(_(" -U, --username=NAME connect as specified database user\n")); printf(_(" -U, --username=NAME connect as specified database user\n"));
printf(_(" -w, --no-password never prompt for password\n")); printf(_(" -w, --no-password never prompt for password\n"));
printf(_(" -W, --password force password prompt (should happen automatically)\n")); printf(_(" -W, --password force password prompt (should happen automatically)\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
/* /*
......
...@@ -88,7 +88,7 @@ usage(void) ...@@ -88,7 +88,7 @@ usage(void)
printf(_(" -?, --help show this help, then exit\n")); printf(_(" -?, --help show this help, then exit\n"));
printf(_("\nIf no data directory (DATADIR) is specified, " printf(_("\nIf no data directory (DATADIR) is specified, "
"the environment variable PGDATA\nis used.\n\n")); "the environment variable PGDATA\nis used.\n\n"));
printf(_("Report bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
/* /*
......
...@@ -102,7 +102,7 @@ help(void) ...@@ -102,7 +102,7 @@ help(void)
printf(_(" --version show the PostgreSQL version\n")); printf(_(" --version show the PostgreSQL version\n"));
printf(_(" -?, --help show this help, then exit\n")); printf(_(" -?, --help show this help, then exit\n"));
printf(_("\nWith no arguments, all known items are shown.\n\n")); printf(_("\nWith no arguments, all known items are shown.\n\n"));
printf(_("Report bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
static void static void
......
...@@ -41,7 +41,7 @@ usage(const char *progname) ...@@ -41,7 +41,7 @@ usage(const char *progname)
printf(_(" -?, --help show this help, then exit\n")); printf(_(" -?, --help show this help, then exit\n"));
printf(_("\nIf no data directory (DATADIR) is specified, " printf(_("\nIf no data directory (DATADIR) is specified, "
"the environment variable PGDATA\nis used.\n\n")); "the environment variable PGDATA\nis used.\n\n"));
printf(_("Report bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
......
...@@ -2095,7 +2095,7 @@ do_help(void) ...@@ -2095,7 +2095,7 @@ do_help(void)
printf(_(" demand start service on demand\n")); printf(_(" demand start service on demand\n"));
#endif #endif
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
......
...@@ -1047,7 +1047,7 @@ help(const char *progname) ...@@ -1047,7 +1047,7 @@ help(const char *progname)
printf(_("\nIf no database name is supplied, then the PGDATABASE environment\n" printf(_("\nIf no database name is supplied, then the PGDATABASE environment\n"
"variable value is used.\n\n")); "variable value is used.\n\n"));
printf(_("Report bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
static void static void
......
...@@ -670,7 +670,7 @@ help(void) ...@@ -670,7 +670,7 @@ help(void)
printf(_("\nIf -f/--file is not used, then the SQL script will be written to the standard\n" printf(_("\nIf -f/--file is not used, then the SQL script will be written to the standard\n"
"output.\n\n")); "output.\n\n"));
printf(_("Report bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
......
...@@ -519,5 +519,5 @@ usage(const char *progname) ...@@ -519,5 +519,5 @@ usage(const char *progname)
"The options -I, -n, -N, -P, -t, -T, and --section can be combined and specified\n" "The options -I, -n, -N, -P, -t, -T, and --section can be combined and specified\n"
"multiple times to select multiple objects.\n")); "multiple times to select multiple objects.\n"));
printf(_("\nIf no input file name is supplied, then standard input is used.\n\n")); printf(_("\nIf no input file name is supplied, then standard input is used.\n\n"));
printf(_("Report bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
...@@ -1223,5 +1223,5 @@ usage(void) ...@@ -1223,5 +1223,5 @@ usage(void)
printf(_(" -x, --next-transaction-id=XID set next transaction ID\n")); printf(_(" -x, --next-transaction-id=XID set next transaction ID\n"));
printf(_(" --wal-segsize=SIZE size of WAL segments, in megabytes\n")); printf(_(" --wal-segsize=SIZE size of WAL segments, in megabytes\n"));
printf(_(" -?, --help show this help, then exit\n")); printf(_(" -?, --help show this help, then exit\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
...@@ -87,7 +87,7 @@ usage(const char *progname) ...@@ -87,7 +87,7 @@ usage(const char *progname)
printf(_(" --debug write a lot of debug messages\n")); printf(_(" --debug write a lot of debug messages\n"));
printf(_(" -V, --version output version information, then exit\n")); printf(_(" -V, --version output version information, then exit\n"));
printf(_(" -?, --help show this help, then exit\n")); printf(_(" -?, --help show this help, then exit\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
......
...@@ -336,7 +336,7 @@ usage(void) ...@@ -336,7 +336,7 @@ usage(void)
" C:\\> set PGBINNEW=newCluster/bin\n" " C:\\> set PGBINNEW=newCluster/bin\n"
" C:\\> pg_upgrade\n")); " C:\\> pg_upgrade\n"));
#endif #endif
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
......
...@@ -730,7 +730,7 @@ usage(void) ...@@ -730,7 +730,7 @@ usage(void)
printf(_(" -z, --stats[=record] show statistics instead of records\n" printf(_(" -z, --stats[=record] show statistics instead of records\n"
" (optionally, show per-record statistics)\n")); " (optionally, show per-record statistics)\n"));
printf(_(" -?, --help show this help, then exit\n")); printf(_(" -?, --help show this help, then exit\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
int int
......
...@@ -681,8 +681,8 @@ usage(void) ...@@ -681,8 +681,8 @@ usage(void)
" -V, --version output version information, then exit\n" " -V, --version output version information, then exit\n"
" -?, --help show this help, then exit\n" " -?, --help show this help, then exit\n"
"\n" "\n"
"Report bugs to <pgsql-bugs@lists.postgresql.org>.\n", "Report bugs to <%s>.\n",
progname, progname); progname, progname, PACKAGE_BUGREPORT);
} }
/* return whether str matches "^\s*[-+]?[0-9]+$" */ /* return whether str matches "^\s*[-+]?[0-9]+$" */
......
...@@ -144,7 +144,7 @@ usage(unsigned short int pager) ...@@ -144,7 +144,7 @@ usage(unsigned short int pager)
fprintf(output, _("\nFor more information, type \"\\?\" (for internal commands) or \"\\help\" (for SQL\n" fprintf(output, _("\nFor more information, type \"\\?\" (for internal commands) or \"\\help\" (for SQL\n"
"commands) from within psql, or consult the psql section in the PostgreSQL\n" "commands) from within psql, or consult the psql section in the PostgreSQL\n"
"documentation.\n\n")); "documentation.\n\n"));
fprintf(output, _("Report bugs to <pgsql-bugs@lists.postgresql.org>.\n")); fprintf(output, _("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
ClosePager(output); ClosePager(output);
} }
......
...@@ -291,5 +291,5 @@ help(const char *progname) ...@@ -291,5 +291,5 @@ help(const char *progname)
printf(_(" -W, --password force password prompt\n")); printf(_(" -W, --password force password prompt\n"));
printf(_(" --maintenance-db=DBNAME alternate maintenance database\n")); printf(_(" --maintenance-db=DBNAME alternate maintenance database\n"));
printf(_("\nRead the description of the SQL command CLUSTER for details.\n")); printf(_("\nRead the description of the SQL command CLUSTER for details.\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
...@@ -277,5 +277,5 @@ help(const char *progname) ...@@ -277,5 +277,5 @@ help(const char *progname)
printf(_(" -W, --password force password prompt\n")); printf(_(" -W, --password force password prompt\n"));
printf(_(" --maintenance-db=DBNAME alternate maintenance database\n")); printf(_(" --maintenance-db=DBNAME alternate maintenance database\n"));
printf(_("\nBy default, a database with the same name as the current user is created.\n")); printf(_("\nBy default, a database with the same name as the current user is created.\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
...@@ -375,5 +375,5 @@ help(const char *progname) ...@@ -375,5 +375,5 @@ help(const char *progname)
printf(_(" -U, --username=USERNAME user name to connect as (not the one to create)\n")); printf(_(" -U, --username=USERNAME user name to connect as (not the one to create)\n"));
printf(_(" -w, --no-password never prompt for password\n")); printf(_(" -w, --no-password never prompt for password\n"));
printf(_(" -W, --password force password prompt\n")); printf(_(" -W, --password force password prompt\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
...@@ -177,5 +177,5 @@ help(const char *progname) ...@@ -177,5 +177,5 @@ help(const char *progname)
printf(_(" -w, --no-password never prompt for password\n")); printf(_(" -w, --no-password never prompt for password\n"));
printf(_(" -W, --password force password prompt\n")); printf(_(" -W, --password force password prompt\n"));
printf(_(" --maintenance-db=DBNAME alternate maintenance database\n")); printf(_(" --maintenance-db=DBNAME alternate maintenance database\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
...@@ -175,5 +175,5 @@ help(const char *progname) ...@@ -175,5 +175,5 @@ help(const char *progname)
printf(_(" -U, --username=USERNAME user name to connect as (not the one to drop)\n")); printf(_(" -U, --username=USERNAME user name to connect as (not the one to drop)\n"));
printf(_(" -w, --no-password never prompt for password\n")); printf(_(" -w, --no-password never prompt for password\n"));
printf(_(" -W, --password force password prompt\n")); printf(_(" -W, --password force password prompt\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
...@@ -235,5 +235,5 @@ help(const char *progname) ...@@ -235,5 +235,5 @@ help(const char *progname)
printf(_(" -p, --port=PORT database server port\n")); 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(_(" -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(_(" -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);
} }
...@@ -774,5 +774,5 @@ help(const char *progname) ...@@ -774,5 +774,5 @@ help(const char *progname)
printf(_(" -W, --password force password prompt\n")); printf(_(" -W, --password force password prompt\n"));
printf(_(" --maintenance-db=DBNAME alternate maintenance database\n")); printf(_(" --maintenance-db=DBNAME alternate maintenance database\n"));
printf(_("\nRead the description of the SQL command REINDEX for details.\n")); printf(_("\nRead the description of the SQL command REINDEX for details.\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
...@@ -949,5 +949,5 @@ help(const char *progname) ...@@ -949,5 +949,5 @@ help(const char *progname)
printf(_(" -W, --password force password prompt\n")); printf(_(" -W, --password force password prompt\n"));
printf(_(" --maintenance-db=DBNAME alternate maintenance database\n")); printf(_(" --maintenance-db=DBNAME alternate maintenance database\n"));
printf(_("\nRead the description of the SQL command VACUUM for details.\n")); printf(_("\nRead the description of the SQL command VACUUM for details.\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
...@@ -58,7 +58,7 @@ help(const char *progname) ...@@ -58,7 +58,7 @@ help(const char *progname)
printf(_(" -?, --help show this help, then exit\n")); printf(_(" -?, --help show this help, then exit\n"));
printf(_("\nIf no output file is specified, the name is formed by adding .c to the\n" printf(_("\nIf no output file is specified, the name is formed by adding .c to the\n"
"input file name, after stripping off .pgc if present.\n")); "input file name, after stripping off .pgc if present.\n"));
printf(_("\nReport bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
static void static void
......
...@@ -1429,7 +1429,7 @@ cppline {space}*#([^i][A-Za-z]*|{if}|{ifdef}|{ifndef}|{import})((\/\*[^*/]*\*+ ...@@ -1429,7 +1429,7 @@ cppline {space}*#([^i][A-Za-z]*|{if}|{ifdef}|{ifndef}|{import})((\/\*[^*/]*\*+
} }
} }
<INITIAL>{other}|\n { mmfatal(PARSE_ERROR, "internal error: unreachable state; please report this to <pgsql-bugs@lists.postgresql.org>"); } <INITIAL>{other}|\n { mmfatal(PARSE_ERROR, "internal error: unreachable state; please report this to <%s>", PACKAGE_BUGREPORT); }
%% %%
......
...@@ -301,7 +301,7 @@ ECPGdump_a_type(FILE *o, const char *name, struct ECPGtype *type, const int brac ...@@ -301,7 +301,7 @@ ECPGdump_a_type(FILE *o, const char *name, struct ECPGtype *type, const int brac
break; break;
default: default:
if (!IS_SIMPLE_TYPE(type->u.element->type)) if (!IS_SIMPLE_TYPE(type->u.element->type))
base_yyerror("internal error: unknown datatype, please report this to <pgsql-bugs@lists.postgresql.org>"); base_yyerror("internal error: unknown datatype, please report this to <" PACKAGE_BUGREPORT ">");
ECPGdump_a_simple(o, name, ECPGdump_a_simple(o, name,
type->u.element->type, type->u.element->type,
...@@ -672,7 +672,7 @@ ECPGfree_type(struct ECPGtype *type) ...@@ -672,7 +672,7 @@ ECPGfree_type(struct ECPGtype *type)
break; break;
default: default:
if (!IS_SIMPLE_TYPE(type->u.element->type)) if (!IS_SIMPLE_TYPE(type->u.element->type))
base_yyerror("internal error: unknown datatype, please report this to <pgsql-bugs@lists.postgresql.org>"); base_yyerror("internal error: unknown datatype, please report this to <" PACKAGE_BUGREPORT ">");
free(type->u.element); free(type->u.element);
} }
......
...@@ -2071,7 +2071,7 @@ help(void) ...@@ -2071,7 +2071,7 @@ help(void)
printf(_("The exit status is 0 if all tests passed, 1 if some tests failed, and 2\n")); printf(_("The exit status is 0 if all tests passed, 1 if some tests failed, and 2\n"));
printf(_("if the tests could not be run for some reason.\n")); printf(_("if the tests could not be run for some reason.\n"));
printf(_("\n")); printf(_("\n"));
printf(_("Report bugs to <pgsql-bugs@lists.postgresql.org>.\n")); printf(_("Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
} }
int int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment