diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-04 14:30:47 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-04 14:30:47 +0000 |
commit | aa36987ef707f79042a21dc793feec5586f01edb (patch) | |
tree | a6c7bb8383d6fd6517838d8514c14b36ae43a86a | |
parent | 6f52f3ec67c2d19483d065f7477854411477ac97 (diff) |
And the bit I missed... :/
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3829 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/inspircd_io.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/inspircd_io.cpp b/src/inspircd_io.cpp index 84af4bd16..eb5229252 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -1200,7 +1200,9 @@ bool ServerConfig::ParseLine(ConfigDataHash &target, std::string &line, long lin { /* Leaving quotes, we have the value */ results.push_back(KeyVal(current_key, current_value)); - std::cout << "<" << tagname << ":" << current_key << "> " << current_value << std::endl; + + // std::cout << "<" << tagname << ":" << current_key << "> " << current_value << std::endl; + in_quote = false; got_key = false; |