Fix bug in scram is_alpha

This commit is contained in:
Badlop 2011-08-17 19:33:58 +02:00
parent abebabc487
commit 3edea6c806
1 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@ unescape_username(EscapedUsername) ->
is_alpha(Char) when Char >= $a, Char =< $z ->
true;
is_alpha(Char) when Char >= $A, Char =< $Z ->
true;
true;
is_alpha(_) ->
true.
false.