aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2005-06-11 02:50:07 +0000
committerTatsuo Ishii <ishii@postgresql.org>2005-06-11 02:50:07 +0000
commit4f3ae012fdf435e601d54f7a6ee6fb791a1a4774 (patch)
treecbe29d7e0e765d898c112e09bbf26320ace0d4e6 /src/backend
parentfe88b2043a232b71bb5727e9f026393fb77fb0ed (diff)
downloadpostgresql-4f3ae012fdf435e601d54f7a6ee6fb791a1a4774.tar.gz
postgresql-4f3ae012fdf435e601d54f7a6ee6fb791a1a4774.zip
Fix bug in MIC -> EUC_JP conversion. Per Atsushi Ogawa.
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c b/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c
index b7a18a1b6f3..a8d10a01038 100644
--- a/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c
+++ b/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c,v 1.6 2003/08/04 02:40:07 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis/euc_jp_and_sjis.c,v 1.6.4.1 2005/06/11 02:50:07 ishii Exp $
*
*-------------------------------------------------------------------------
*/
@@ -126,7 +126,7 @@ mic_to_euc_jp(PG_FUNCTION_ARGS)
Assert(PG_GETARG_INT32(1) == PG_EUC_JP);
Assert(len >= 0);
- mic2sjis(src, dest, len);
+ mic2euc_jp(src, dest, len);
PG_RETURN_VOID();
}