From: Thomas Wouters Date: Mon, 24 Jul 2000 16:26:35 +0000 (+0000) Subject: Remove unused variable and what looks like an ancient relic of an old X-Git-Tag: v2.0b1~736 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c44221271a98993ec468fa3c1c99165a40b59895;p=thirdparty%2FPython%2Fcpython.git Remove unused variable and what looks like an ancient relic of an old version of SSLeay (now known as OpenSSL.) --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index a9bfb26ac4fa..e95e33927bd0 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -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){