*** empty log message ***

This commit is contained in:
Mike Goslin 2000-12-16 02:40:24 +00:00
parent 10ad25b088
commit 9046be0eaa

View File

@ -20,7 +20,6 @@
#include <netdb.h>
#else
#include <winsock2.h>
#define errno WSAGetLastError()
#endif
////////////////////////////////////////////////////////////////////
@ -269,9 +268,15 @@ fast_receive(int socket, DownloadStatus *status, int rec_size) {
<< "Downloader::fast_receive() - recv() error = 0" << endl;
return FR_no_data;
} else {
#if defined(WIN32_VC)
downloader_cat.error()
<< "Downloader::fast_receive() - recv() error: "
<< err << endl;
#else
downloader_cat.error()
<< "Downloader::fast_receive() - recv() error: "
<< errno << endl;
#endif
return FR_error;
}
}