diff options
author | William Ahern <william@server.local> | 2013-01-29 17:23:23 -0800 |
---|---|---|
committer | William Ahern <william@server.local> | 2013-01-29 17:23:23 -0800 |
commit | 7cb2ff78a20b836defff9d845508c48a5b6f0344 (patch) | |
tree | 05970ac64d4e2733d19cd5071c9c598cb8a1787a | |
parent | 1e75ef03e99e55650716e29e5ccd8edae5fa940b (diff) | |
download | luaossl-7cb2ff78a20b836defff9d845508c48a5b6f0344.tar.gz luaossl-7cb2ff78a20b836defff9d845508c48a5b6f0344.tar.bz2 luaossl-7cb2ff78a20b836defff9d845508c48a5b6f0344.zip |
-n
fix constness warning
-rw-r--r-- | openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3211,7 +3211,7 @@ static int ssl_getPeerChain(lua_State *L) { static int ssl_getCipherInfo(lua_State *L) { SSL *ssl = checksimple(L, 1, SSL_CLASS); - SSL_CIPHER *cipher; + const SSL_CIPHER *cipher; char descr[256]; if (!(cipher = SSL_get_current_cipher(ssl))) |