]> granicus.if.org Git - curl/commitdiff
openssl: removed error string #ifdef
authorDaniel Stenberg <daniel@haxx.se>
Thu, 4 Jun 2015 22:12:56 +0000 (00:12 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 4 Jun 2015 22:12:56 +0000 (00:12 +0200)
ERR_error_string_n() was introduced in 0.9.6, no need to #ifdef anymore

lib/vtls/openssl.c

index 0525942d8dd40925d537f32c2c99300f716dcaa0..6378e10ff0932f8c09984ac8e0745d0b82cb9050 100644 (file)
 #undef HAVE_PKCS12_SUPPORT
 #endif
 
-#if OPENSSL_VERSION_NUMBER >= 0x00906001L
-#define HAVE_ERR_ERROR_STRING_N 1
-#endif
-
 #if OPENSSL_VERSION_NUMBER >= 0x00909000L
 #define SSL_METHOD_QUAL const
 #else
@@ -680,15 +676,10 @@ static int x509_name_oneline(X509_NAME *a, char *buf, size_t size)
  */
 static char *SSL_strerror(unsigned long error, char *buf, size_t size)
 {
-#ifdef HAVE_ERR_ERROR_STRING_N
   /* OpenSSL 0.9.6 and later has a function named
      ERR_error_string_n() that takes the size of the buffer as a
      third argument */
   ERR_error_string_n(error, buf, size);
-#else
-  (void) size;
-  ERR_error_string(error, buf);
-#endif
   return buf;
 }