diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-04-23 15:24:38 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-04-23 17:50:18 +0200 |
commit | 80420745ff2998626a302b5f863db8364e858f8f (patch) | |
tree | 5e6a24950a0f4a79bc35996959889962ad8a6472 /lib/util/charset/tests | |
parent | ae6af9ecbfce559a50d95853d6e66b8aa8788741 (diff) | |
download | samba-80420745ff2998626a302b5f863db8364e858f8f.tar.gz samba-80420745ff2998626a302b5f863db8364e858f8f.tar.bz2 samba-80420745ff2998626a302b5f863db8364e858f8f.zip |
Add a new non-convenience version of push_codepoint.
Diffstat (limited to 'lib/util/charset/tests')
-rw-r--r-- | lib/util/charset/tests/iconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/charset/tests/iconv.c b/lib/util/charset/tests/iconv.c index 091876f63b..e8d7bc1384 100644 --- a/lib/util/charset/tests/iconv.c +++ b/lib/util/charset/tests/iconv.c @@ -288,7 +288,7 @@ static bool test_codepoint(struct torture_context *tctx, unsigned int codepoint) size_t size, size2; codepoint_t c; - size = push_codepoint(lp_iconv_convenience(tctx->lp_ctx), (char *)buf, codepoint); + size = push_codepoint_convenience(lp_iconv_convenience(tctx->lp_ctx), (char *)buf, codepoint); torture_assert(tctx, size != -1 || (codepoint >= 0xd800 && codepoint <= 0x10000), "Invalid Codepoint range"); |