]> granicus.if.org Git - mutt/commitdiff
Fix a typo concerning OpenSSL version numbers.
authorThomas Roessler <roessler@does-not-exist.org>
Sat, 3 Mar 2001 18:17:23 +0000 (18:17 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Sat, 3 Mar 2001 18:17:23 +0000 (18:17 +0000)
mutt_ssl.c

index 50a3b23406d03a341a31a2180c5c3a4c4857e241..6fe687a4a2cbd83fdb068336e8c0183a3bc47b6c 100644 (file)
@@ -303,7 +303,7 @@ int ssl_negotiate (sslsockdata* ssldata)
   int err;
   const char* errmsg;
 
-#if OPENSSL_VERSION_NUMBER >= 0x0090600
+#if OPENSSL_VERSION_NUMBER >= 0x00906000L
   /* This only exists in 0.9.6 and above. Without it we may get interrupted
    *   reads or writes. Bummer. */
   SSL_set_mode (ssldata->ssl, SSL_MODE_AUTO_RETRY);