tweaked an error message

This commit is contained in:
Gunter Labes 2009-05-19 19:02:05 +00:00
parent 000eb0d7bb
commit 1651550b41

View File

@ -538,9 +538,9 @@ static SOCKET_STATE send_file(buffer* buf)
}
if (upto != filesize && !file_stream->good()) {
ERR_NW << "send_file failed because stream not good from file "
<< buf->config_error << " upto: " << upto
<< " size: " << filesize << "\n";
ERR_NW << "send_file failed because the stream from file '"
<< buf->config_error << "' is not good. Sent up to: " << upto
<< " of file size: " << filesize << "\n";
}
return result;
}