summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fandrich <dan@coneharvesters.com>2017-03-23 22:50:58 +0100
committerDan Fandrich <dan@coneharvesters.com>2017-03-23 22:50:58 +0100
commitf99fcb0feec29703b900ba6ab045f76ff9ef3bfc (patch)
treecc48966105c0c6cf5949d948db56bd0d92e93890
parentb999d35c71904d72bd38b432cb9cc57898d32cbc (diff)
downloadcurl-f99fcb0feec29703b900ba6ab045f76ff9ef3bfc.tar.gz
openssl: made the error table static const
-rw-r--r--lib/vtls/openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c
index 25026ab25..3b34479bb 100644
--- a/lib/vtls/openssl.c
+++ b/lib/vtls/openssl.c
@@ -162,7 +162,7 @@ static unsigned long OpenSSL_version_num(void)
static const char *SSL_ERROR_to_str(int err)
{
- const char *str[] = {
+ static const char * const str[] = {
"SSL_ERROR_NONE", /* 0 */
"SSL_ERROR_SSL", /* 1 */
"SSL_ERROR_WANT_READ", /* 2 */