From 71f68ddb7d61f8bc77dab31d91b4bde3798ec56a Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 26 Mar 2005 13:27:19 +0000 Subject: Fixed a minor typo git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@915 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspircd_io.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inspircd_io.cpp b/src/inspircd_io.cpp index 45709fcf9..7fd5c952d 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -143,7 +143,7 @@ std::string ConfProcess(char* buffer, long linenumber, std::stringstream* errors } // firstly clean up the line by stripping spaces from the start and end and converting tabs to spaces for (int d = 0; d < strlen(buffer); d++) - if (buffer[d]) == 9) + if ((buffer[d]) == 9) buffer[d] = ' '; while ((buffer[0] == ' ') && (strlen(buffer)>0)) buffer++; while ((buffer[strlen(buffer)-1] == ' ') && (strlen(buffer)>0)) buffer[strlen(buffer)-1] = '\0'; -- cgit v1.2.3