aboutsummaryrefslogtreecommitdiff
path: root/src/bin/scripts/createlang.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-06-03 00:07:38 +0000
committerBruce Momjian <bruce@momjian.us>2004-06-03 00:07:38 +0000
commit687084333977dfc4318c470b405c55babd056710 (patch)
tree7d9155832550182368a492915bbf4552352e4f58 /src/bin/scripts/createlang.c
parent70f5a87ecc4cfa8810fb27ad55fa4904dcb40a6a (diff)
downloadpostgresql-687084333977dfc4318c470b405c55babd056710.tar.gz
postgresql-687084333977dfc4318c470b405c55babd056710.zip
Add PGETC (for pg_service.conf) and PGLOCALE (for locale dir)
environment variable processing to libpq. The patch also adds code to our client apps so we set the environment variable directly based on our binary location, unless it is already set. This will allow our applications to emit proper locale messages that are generated in libpq.
Diffstat (limited to 'src/bin/scripts/createlang.c')
-rw-r--r--src/bin/scripts/createlang.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/scripts/createlang.c b/src/bin/scripts/createlang.c
index 4c7a41e4d02..3e3fa762f50 100644
--- a/src/bin/scripts/createlang.c
+++ b/src/bin/scripts/createlang.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/createlang.c,v 1.11 2004/06/01 02:54:09 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.12 2004/06/03 00:07:38 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -61,7 +61,7 @@ main(int argc, char *argv[])
PGresult *result;
progname = get_progname(argv[0]);
- set_pglocale(argv[0], "pgscripts");
+ set_pglocale_pgservice(argv[0], "pgscripts");
handle_help_version_opts(argc, argv, "createlang", help);