From 7e4dec158b57f5738a063557f2c487e4b2f714e7 Mon Sep 17 00:00:00 2001 From: om Date: Sun, 5 Mar 2006 17:51:56 +0000 Subject: > != >= && < != <= git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3466 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_blockcaps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules') diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index 7bfa041d9..6ebb659b6 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -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; } -- cgit v1.2.3