Or this, maybe:
$auth_list = radius(strtolower($user),$paswd,$clientip,$clientmac,"USER LOGIN", $radiusctx);
You could also strtolower() the password, but that would just be to let people log in with capslock on. If you do you need to make sure you also strtolower() the password before you save it/hash it/etc in whatever RADIUS is using as a backend.
Back in the dialup days we used to have some logic that would lowercase the password and try again if the initial login failed and the entered password wasn't mixed case. Kept the phone from ringing unnecessarily. Today, that would just give the assholes two tries for every attempt.