remove duplicate statement

This commit is contained in:
Dr. Stephen Henson 2010-11-18 17:33:17 +00:00
parent 833ebea189
commit b71f815f6b

View File

@ -2571,8 +2571,6 @@ const char *SSL_get_version(const SSL *s)
return("TLSv1");
else if (s->version == SSL3_VERSION)
return("SSLv3");
else if (s->version == SSL3_VERSION)
return("SSLv3");
else if (s->version == SSL2_VERSION)
return("SSLv2");
else