summaryrefslogtreecommitdiffstats
path: root/source/auth/pass_check.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-07-03 19:11:31 +0000
committerJeremy Allison <jra@samba.org>2003-07-03 19:11:31 +0000
commitff222716a08af65d26ad842ce4c2841cc6540959 (patch)
tree15a037eb0977e84bba245ad22d3002d46c2c740b /source/auth/pass_check.c
parent02bc7be1ac6b75bf6559ea684bbc89ab3e19402e (diff)
downloadsamba-ff222716a08af65d26ad842ce4c2841cc6540959.tar.gz
samba-ff222716a08af65d26ad842ce4c2841cc6540959.tar.xz
samba-ff222716a08af65d26ad842ce4c2841cc6540959.zip
Removed strupper/strlower macros that automatically map to strupper_m/strlower_m.
I really want people to think about when they're using multibyte strings. Jeremy.
Diffstat (limited to 'source/auth/pass_check.c')
-rw-r--r--source/auth/pass_check.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/auth/pass_check.c b/source/auth/pass_check.c
index 88b82e34746..1ac8c1815a6 100644
--- a/source/auth/pass_check.c
+++ b/source/auth/pass_check.c
@@ -757,7 +757,7 @@ NTSTATUS pass_check(const struct passwd *pass, const char *user, const char *pas
/* try all lowercase if it's currently all uppercase */
if (strhasupper(pass2)) {
- strlower(pass2);
+ strlower_m(pass2);
if NT_STATUS_IS_OK(nt_status = password_check(pass2)) {
if (fn)
fn(user, pass2);
@@ -771,8 +771,7 @@ NTSTATUS pass_check(const struct passwd *pass, const char *user, const char *pas
}
/* last chance - all combinations of up to level chars upper! */
- strlower(pass2);
-
+ strlower_m(pass2);
if (NT_STATUS_IS_OK(nt_status = string_combinations(pass2, password_check, level))) {
if (fn)