diff options
Diffstat (limited to 'openssl.c')
-rw-r--r-- | openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3211,7 +3211,7 @@ static int ssl_getPeerChain(lua_State *L) { | |||
3211 | 3211 | ||
3212 | static int ssl_getCipherInfo(lua_State *L) { | 3212 | static int ssl_getCipherInfo(lua_State *L) { |
3213 | SSL *ssl = checksimple(L, 1, SSL_CLASS); | 3213 | SSL *ssl = checksimple(L, 1, SSL_CLASS); |
3214 | SSL_CIPHER *cipher; | 3214 | const SSL_CIPHER *cipher; |
3215 | char descr[256]; | 3215 | char descr[256]; |
3216 | 3216 | ||
3217 | if (!(cipher = SSL_get_current_cipher(ssl))) | 3217 | if (!(cipher = SSL_get_current_cipher(ssl))) |