diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-18 08:13:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:48 -0500 |
commit | f25681b120555bfee99b4a3079479cb3b64e2ca6 (patch) | |
tree | 13f322c5db409002cf26f3036ddc0ade3a60dc24 /source4/lib | |
parent | 9041c3560fe1d8e272e6199f2e7c56407d49d3cb (diff) | |
download | samba-f25681b120555bfee99b4a3079479cb3b64e2ca6.tar.gz samba-f25681b120555bfee99b4a3079479cb3b64e2ca6.tar.bz2 samba-f25681b120555bfee99b4a3079479cb3b64e2ca6.zip |
r2402: to make ms_fnmatch() case-insensitive we need toupper_w() exposed
(This used to be commit 69413bdcfcf40e9ae2e5bcb00863cc7ef0ee8da1)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/util_unistr.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)]; } |