From f25681b120555bfee99b4a3079479cb3b64e2ca6 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 18 Sep 2004 08:13:28 +0000 Subject: r2402: to make ms_fnmatch() case-insensitive we need toupper_w() exposed (This used to be commit 69413bdcfcf40e9ae2e5bcb00863cc7ef0ee8da1) --- source4/lib/util_unistr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/util_unistr.c') diff --git a/source4/lib/util_unistr.c b/source4/lib/util_unistr.c index 63d68fa12e..4b303a894d 100644 --- a/source4/lib/util_unistr.c +++ b/source4/lib/util_unistr.c @@ -162,7 +162,7 @@ void init_valid_table(void) Convert a wchar to upper case. ********************************************************************/ -static smb_ucs2_t toupper_w(smb_ucs2_t val) +smb_ucs2_t toupper_w(smb_ucs2_t val) { return upcase_table[SVAL(&val,0)]; } -- cgit