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>
Thu, 21 Jul 2011 18:15:00 +0000 (20:15 +0200)
commit5b6a34128a0e0bc33c255dc53c9fb9fd8e6d34d8
treeabc00143e75b2559d024ecb2675952fdfb79ed0e
parentc5b272a05c4bd9d7f70c14fe307b8da46b9e607e
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.
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