diff options
Diffstat (limited to 'src/bin/psql/stringutils.c')
-rw-r--r-- | src/bin/psql/stringutils.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bin/psql/stringutils.c b/src/bin/psql/stringutils.c index 8473fd13944..1421cf13608 100644 --- a/src/bin/psql/stringutils.c +++ b/src/bin/psql/stringutils.c @@ -41,7 +41,8 @@ strtokx(const char *s, const char *quote, char escape, char *was_quoted, - unsigned int *token_pos) + unsigned int *token_pos, + int encoding) { static char *storage = NULL;/* store the local copy of the users * string here */ @@ -93,7 +94,7 @@ strtokx(const char *s, for (p = start; *p && (*p != *cp || *(p - 1) == escape); #ifdef MULTIBYTE - p += PQmblen(p) + p += PQmblen(p, encoding) #else p++ #endif |