View Single Post
Old 03-17-2016, 09:09 PM  
mr-b
Junior Member
 
Join Date: Mar 2004
Posts: 20
Default

Here you go:

ioFTPD ssl tempfix

Quick temp fix for OpenSSL 1.0.2g+ where SSLv2 has been removed.

I changed the following lines in ioFTPD/src/services.c:

if (! _tcsicmp(tszEncryptionProtocol, _TEXT("SSL2")) ||
! _tcsicmp(tszEncryptionProtocol, _TEXT("SSL")))
{
//Method = SSLv2_method();
//lpService->bTlsSupported = FALSE;
Putlog(LOG_ERROR, _T("ERROR SSLv2 NOT SUPPORTED"));
return;
}
mr-b is offline   Reply With Quote