First part of fix for bug 8310 - toupper_ascii() is broken on big-endian systems
authorJeremy Allison <jra@samba.org>
Tue, 19 Jul 2011 19:21:23 +0000 (12:21 -0700)
committerKarolin Seeger <kseeger@samba.org>
Tue, 26 Jul 2011 19:54:33 +0000 (21:54 +0200)
commit9deadb668d82a0b608123c3940075e92ea93c009
treefe3f5400743fad01ff32b979a27735326de0a20c
parent9f9873c0aaee4e64ead5a60a76174d2f9c1406f0
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.
(cherry picked from commit 5b6a34128a0e0bc33c255dc53c9fb9fd8e6d34d8)
source3/auth/pass_check.c
source3/client/clitar.c
source3/include/proto.h
source3/lib/username.c
source3/lib/util_str.c
source3/lib/util_unistr.c
source3/param/loadparm.c
source3/passdb/passdb.c
source3/smbd/mangle_hash.c
source3/smbd/mangle_hash2.c
source3/web/swat.c