bugfix: urgh, an important line disappeared some how, reinserted
jmo [Thu, 6 Oct 2011 09:33:35 +0000 (09:33 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1814 270642c3-0616-0410-b53a-bc976706d245

senf/Utils/Console/Server.cc

index aef6bc5..fe7f351 100644 (file)
@@ -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;
     }