projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76c50c0
)
Fix set_pglocale to properly pass my_exec_path to get_locale_path instead of argv0.
author
Bruce Momjian
<bruce@momjian.us>
Tue, 25 May 2004 18:18:29 +0000
(18:18 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Tue, 25 May 2004 18:18:29 +0000
(18:18 +0000)
src/port/path.c
patch
|
blob
|
blame
|
history
diff --git
a/src/port/path.c
b/src/port/path.c
index c0b579dede08191c957de30e67ebb71633985622..cc01962baac17735b27ea68bce0c0592a9a68c7b 100644
(file)
--- a/
src/port/path.c
+++ b/
src/port/path.c
@@
-8,7
+8,7
@@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/port/path.c,v 1.1
3 2004/05/25 01:42:08
momjian Exp $
+ * $PostgreSQL: pgsql/src/port/path.c,v 1.1
4 2004/05/25 18:18:29
momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@
-258,7
+258,7
@@
set_pglocale(const char *argv0, const char *app)
if (find_my_exec(argv0, my_exec_path) < 0)
return;
- get_locale_path(
argv0
, path);
+ get_locale_path(
my_exec_path
, path);
bindtextdomain(app, path);
textdomain(app);
#endif