aboutsummaryrefslogtreecommitdiffstats
path: root/src/openssl.c
diff options
context:
space:
mode:
authorLibravatarLibravatar William Ahern <william@25thandClement.com> 2016-01-04 15:53:05 +0800
committerLibravatarLibravatar William Ahern <william@25thandClement.com> 2016-01-04 15:53:05 +0800
commit705017b338d1faa6b53cf4837cdc82e7544dc90b (patch)
tree45be5b9c9b025e1dd6c6dc54ded775b1f660d650 /src/openssl.c
parentcf985a41579b24a9aa821a7e9d95ee21ffca7a9e (diff)
parenta8f37577ca152e96d09e01c8416260d314cdc1b8 (diff)
downloadluaossl-705017b338d1faa6b53cf4837cdc82e7544dc90b.tar.gz
luaossl-705017b338d1faa6b53cf4837cdc82e7544dc90b.tar.bz2
luaossl-705017b338d1faa6b53cf4837cdc82e7544dc90b.zip
Merge branch 'fix-wrong-type' of git://github.com/daurnimator/luaossl into daurnimator-fix-wrong-type
Diffstat (limited to 'src/openssl.c')
-rw-r--r--src/openssl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/openssl.c b/src/openssl.c
index 1ea5d16..71aaed4 100644
--- a/src/openssl.c
+++ b/src/openssl.c
@@ -6358,7 +6358,7 @@ static int ssl_interpose(lua_State *L) {
static int ssl_setOptions(lua_State *L) {
- SSL *ssl = checksimple(L, 1, SSL_CTX_CLASS);
+ SSL *ssl = checksimple(L, 1, SSL_CLASS);
auxL_Integer options = auxL_checkinteger(L, 2);
auxL_pushinteger(L, SSL_set_options(ssl, options));
@@ -6368,7 +6368,7 @@ static int ssl_setOptions(lua_State *L) {
static int ssl_getOptions(lua_State *L) {
- SSL *ssl = checksimple(L, 1, SSL_CTX_CLASS);
+ SSL *ssl = checksimple(L, 1, SSL_CLASS);
auxL_pushinteger(L, SSL_get_options(ssl));
@@ -6377,7 +6377,7 @@ static int ssl_getOptions(lua_State *L) {
static int ssl_clearOptions(lua_State *L) {
- SSL *ssl = checksimple(L, 1, SSL_CTX_CLASS);
+ SSL *ssl = checksimple(L, 1, SSL_CLASS);
auxL_Integer options = auxL_checkinteger(L, 2);
auxL_pushinteger(L, SSL_clear_options(ssl, options));