diff options
Diffstat (limited to 'src/inspircd_io.cpp')
-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; |