1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Fix push_codepoint function without iconv_convenience.

This commit is contained in:
Jelmer Vernooij 2009-04-23 17:46:54 +02:00
parent 598f78bd1f
commit 3cf48ee05a

View 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);
}