From: Yang Tse Date: Mon, 17 Jul 2006 05:05:57 +0000 (+0000) Subject: Update error buffer size used for SSL_strerror() X-Git-Tag: curl-7_15_5~93 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f3c508f6e8b98ac601fbe2ad7312c2d70d3b4714;p=thirdparty%2Fcurl.git Update error buffer size used for SSL_strerror() --- diff --git a/lib/ssluse.c b/lib/ssluse.c index d0dc7ddfab..5e91427f36 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -1407,8 +1407,8 @@ Curl_ossl_connect_step2(struct connectdata *conn, else { /* untreated error */ unsigned long errdetail; - char error_buffer[120]; /* OpenSSL documents that this must be at least - 120 bytes long. */ + char error_buffer[256]; /* OpenSSL documents that this must be at least + 256 bytes long. */ CURLcode rc; const char *cert_problem = NULL;