From 39ee38d9c1aabf4db065b433d067d0da053d7d61 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 6 Dec 2007 17:52:23 +0100 Subject: r26316: Use contexts for conversion functions. (This used to be commit f6420d933b5b011d428974f3a2a57edf19e6f482) --- source4/lib/policy/lex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/policy') diff --git a/source4/lib/policy/lex.c b/source4/lib/policy/lex.c index fd4c102142..5364706fc4 100644 --- a/source4/lib/policy/lex.c +++ b/source4/lib/policy/lex.c @@ -600,7 +600,7 @@ static bool utf16 = false; if (fread(&v, 2, 1, yyin) < 1) \ result = YY_NULL; \ else \ - result = push_codepoint(buf, v); \ + result = push_codepoint(global_smb_iconv_convenience, buf, v); \ } else { \ int c = getc(yyin); \ result = (c == EOF) ? YY_NULL : (buf[0] = c, 1); \ -- cgit