Fix push_codepoint function without iconv_convenience.
authorJelmer Vernooij <jelmer@samba.org>
Thu, 23 Apr 2009 15:46:54 +0000 (17:46 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Thu, 23 Apr 2009 15:50:18 +0000 (17:50 +0200)
lib/util/charset/util_unistr.c

index 812129cffbcb67b51e318e077e48fb72770d8c44..024dc70acc2748a22b5825b9616f8e46a0d4af5e 100644 (file)
@@ -995,5 +995,5 @@ _PUBLIC_ codepoint_t next_codepoint(const char *str, size_t *size)
 
 _PUBLIC_ ssize_t push_codepoint(char *str, codepoint_t c)
 {
-       return push_codepoint(get_iconv_convenience(), str, c);
+       return push_codepoint_convenience(get_iconv_convenience(), str, c);
 }