aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tcop/postgres.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2003-09-27 09:29:31 +0000
committerPeter Eisentraut <peter_e@gmx.net>2003-09-27 09:29:31 +0000
commite05147e51aac1ffbc000aa63867049a93f6a512f (patch)
tree6920fe96d212e88e1ba7405e577bee984918fb0a /src/backend/tcop/postgres.c
parent4af19a579d4577ce74d5fe26dd5de1d55a0d1ad2 (diff)
downloadpostgresql-e05147e51aac1ffbc000aa63867049a93f6a512f.tar.gz
postgresql-e05147e51aac1ffbc000aa63867049a93f6a512f.zip
You can't NLS-enable a program component by just putting gettext() around
every string, especially if some of the output should be fixed-format machine-readable. This needs to be more carefully sorted out. Also, make the help message generated by --help-config -h be more similar in style to the others.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r--src/backend/tcop/postgres.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index 090bd6c3662..d05380f4762 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.365 2003/09/25 06:58:02 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.366 2003/09/27 09:29:31 petere Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@@ -1991,7 +1991,8 @@ usage(char *progname)
printf(" -P disable system indexes\n");
printf(" -s show statistics after each query\n");
printf(" -S SORT-MEM set amount of memory for sorts (in kbytes)\n");
- printf(" --help-config show configuration options, then exit. Details: --help-config -h\n");
+ printf(" --help-config show configuration parameters, then exit;\n"
+ " details: --help-config -h\n");
printf(" --help show this help, then exit\n");
printf(" --version output version information, then exit\n");
printf("\nDeveloper options:\n");
@@ -2661,7 +2662,7 @@ PostgresMain(int argc, char *argv[], const char *username)
if (!IsUnderPostmaster)
{
puts("\nPOSTGRES backend interactive interface ");
- puts("$Revision: 1.365 $ $Date: 2003/09/25 06:58:02 $\n");
+ puts("$Revision: 1.366 $ $Date: 2003/09/27 09:29:31 $\n");
}
/*