diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-24 16:00:43 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-24 16:00:43 +0200 |
commit | c3415b3e57717cfb96b9df7caa1a27fbc26bde21 (patch) | |
tree | 4217157469cf5162c97c515e0288b963cf457437 /lib/util/charset/tests | |
parent | 264277b555a7bd9d2308ef6ec24ecef77fa1d401 (diff) | |
download | samba-c3415b3e57717cfb96b9df7caa1a27fbc26bde21.tar.gz samba-c3415b3e57717cfb96b9df7caa1a27fbc26bde21.tar.bz2 samba-c3415b3e57717cfb96b9df7caa1a27fbc26bde21.zip |
Add version of next_codepoint without iconv_convenience.
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 aeb42c2fa1..40e223b28f 100644 --- a/lib/util/charset/tests/iconv.c +++ b/lib/util/charset/tests/iconv.c @@ -299,7 +299,7 @@ static bool test_codepoint(struct torture_context *tctx, unsigned int codepoint) buf[size+2] = random(); buf[size+3] = random(); - c = next_codepoint(lp_iconv_convenience(tctx->lp_ctx), (char *)buf, &size2); + c = next_codepoint_convenience(lp_iconv_convenience(tctx->lp_ctx), (char *)buf, &size2); torture_assert(tctx, c == codepoint, talloc_asprintf(tctx, |