openssl: made the error table static const

This commit is contained in:
Dan Fandrich 2017-03-23 22:50:58 +01:00
parent b999d35c71
commit f99fcb0fee

View File

@ -162,7 +162,7 @@ static unsigned long OpenSSL_version_num(void)
static const char *SSL_ERROR_to_str(int err) static const char *SSL_ERROR_to_str(int err)
{ {
const char *str[] = { static const char * const str[] = {
"SSL_ERROR_NONE", /* 0 */ "SSL_ERROR_NONE", /* 0 */
"SSL_ERROR_SSL", /* 1 */ "SSL_ERROR_SSL", /* 1 */
"SSL_ERROR_WANT_READ", /* 2 */ "SSL_ERROR_WANT_READ", /* 2 */