First part of fix for bug 8310 - toupper_ascii() is broken on big-endian systems
commitee34c25c8a989b5a7c0ad59d71bb39f8efff045c
authorJeremy Allison <jra@samba.org>
Tue, 19 Jul 2011 20:19:29 +0000 (19 13:19 -0700)
committerJeremy Allison <jra@samba.org>
Tue, 19 Jul 2011 20:19:29 +0000 (19 13:19 -0700)
tree25d8f09ed1c36ad18c8c54d596efeeb6c1aa66b2
parent2052c2d6fa830b94a6b6cf8dd48b56f62de4e5ac
First part of fix for bug 8310 - toupper_ascii() is broken on big-endian systems

Remove
int toupper_ascii(int c);
int tolower_ascii(int c);
int isupper_ascii(int c);
int islower_ascii(int c);

and replace with their _m equivalents, as they are identical.
12 files changed:
lib/util/charset/charset.h
lib/util/charset/util_unistr_w.c
lib/util/util_str_common.c
source3/auth/pass_check.c
source3/client/clitar.c
source3/lib/username.c
source3/lib/util_str.c
source3/param/loadparm.c
source3/passdb/passdb.c
source3/smbd/mangle_hash.c
source3/smbd/mangle_hash2.c
source3/web/swat.c