From: jmo Date: Thu, 6 Oct 2011 09:33:35 +0000 (+0000) Subject: bugfix: urgh, an important line disappeared some how, reinserted X-Git-Url: http://g0dil.de/git?p=senf.git;a=commitdiff_plain;h=b733a5d9ca5fa34a65c7ebbe3cf8922f37213671 bugfix: urgh, an important line disappeared some how, reinserted git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1814 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/senf/Utils/Console/Server.cc b/senf/Utils/Console/Server.cc index aef6bc5..fe7f351 100644 --- a/senf/Utils/Console/Server.cc +++ b/senf/Utils/Console/Server.cc @@ -415,7 +415,9 @@ prefix_ std::string::size_type senf::console::Client::handleInput(std::string da if (i != std::string::npos) { backtrace_ = msg.substr(0,i); msg = msg.substr(i+4); - } else + } else { + backtrace_.clear(); + } stream() << msg << std::endl; }