File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 31
31
* ENHANCEMENTS, OR MODIFICATIONS.
32
32
*
33
33
* IDENTIFICATION
34
- * $Header: /cvsroot/pgsql/src/pl/tcl/pltcl.c,v 1.57 2002/07/18 04:16:07 ishii Exp $
34
+ * $Header: /cvsroot/pgsql/src/pl/tcl/pltcl.c,v 1.58 2002/07/18 05:07:30 ishii Exp $
35
35
*
36
36
**********************************************************************/
37
37
68
68
static unsigned char *
69
69
utf_u2e (unsigned char * src )
70
70
{
71
- return pg_do_encoding_conversion (src , strlen (src ), PG_UNICODE , GetDatabaseEncoding ());
71
+ return pg_do_encoding_conversion (src , strlen (src ), PG_UTF8 , GetDatabaseEncoding ());
72
72
}
73
73
74
74
static unsigned char *
75
75
utf_e2u (unsigned char * src )
76
76
{
77
- return pg_do_encoding_conversion (src , strlen (src ), GetDatabaseEncoding (), PG_UNICODE );
77
+ return pg_do_encoding_conversion (src , strlen (src ), GetDatabaseEncoding (), PG_UTF8 );
78
78
}
79
79
80
80
#define PLTCL_UTF
You can’t perform that action at this time.
0 commit comments