diff options
author | Bruce Momjian | 2004-06-01 02:54:09 +0000 |
---|---|---|
committer | Bruce Momjian | 2004-06-01 02:54:09 +0000 |
commit | 6c33054a0c4a05a185821fba1b82d3eda195b769 (patch) | |
tree | 87f126753e9174fe474a0d20e7dcd3c0f117e4ca /src/bin/scripts/common.c | |
parent | 66fa6eba5a61be740a6c07de92c42221fae79e9c (diff) |
Remove init_nls() functions, call set_pglocale() directly.
Add locale to pg_ctl.c.
Diffstat (limited to 'src/bin/scripts/common.c')
-rw-r--r-- | src/bin/scripts/common.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/bin/scripts/common.c b/src/bin/scripts/common.c index 715d7e3cdb1..3e36d04f9d5 100644 --- a/src/bin/scripts/common.c +++ b/src/bin/scripts/common.c @@ -5,7 +5,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/bin/scripts/common.c,v 1.8 2004/05/25 01:00:27 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/scripts/common.c,v 1.9 2004/06/01 02:54:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -48,16 +48,6 @@ get_user_name(const char *progname) /* - * Initialized NLS if enabled. - */ -void -init_nls(const char *argv0) -{ - set_pglocale(argv0, "pgscripts"); -} - - -/* * Provide strictly harmonized handling of --help and --version * options. */ |