> != >= && < != <=

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3466 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
om 2006-03-05 17:51:56 +00:00
parent 43b5f0b7ab
commit 7e4dec158b

View File

@ -53,7 +53,7 @@ public:
{
for(unsigned int i = 0; i < text.length(); i++)
{
if((text[i] <= 'A') || (text[i] >= 'Z'))
if((text[i] < 'A') || (text[i] > 'Z'))
{
return 0;
}