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;
}