Remove unused variable and what looks like an ancient relic of an old

version of SSLeay (now known as OpenSSL.)
This commit is contained in:
Thomas Wouters 2000-07-24 16:26:35 +00:00
parent 1e0c2f4bee
commit c44221271a
1 changed files with 0 additions and 7 deletions

View File

@ -1977,13 +1977,6 @@ static SSLObject *
newSSLObject(PySocketSockObject *Sock, char *key_file, char *cert_file)
{
SSLObject *self;
char *str;
#if 0
meth=SSLv23_client_method();
meth=SSLv3_client_method();
meth=SSLv2_client_method();
#endif
self = PyObject_New(SSLObject, &SSL_Type); /* Create new object */
if (self == NULL){