Removed a dead store in sf::Ftp implementation

This commit is contained in:
Marco Antognini 2014-05-27 09:29:12 +02:00 committed by Lukas Dürrenberger
parent 4f2c6c4489
commit 5912d205d3

View File

@ -438,9 +438,6 @@ Ftp::Response Ftp::getResponse()
// we haven't reached the end of the multiline response // we haven't reached the end of the multiline response
if ((separator != '-') && ((code == lastCode) || (lastCode == 0))) if ((separator != '-') && ((code == lastCode) || (lastCode == 0)))
{ {
// Clear the multiline flag
isInsideMultiline = false;
// Extract the line // Extract the line
std::string line; std::string line;
std::getline(in, line); std::getline(in, line);