summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Ahern <william@25thandClement.com>2016-01-04 15:53:05 +0800
committerWilliam Ahern <william@25thandClement.com>2016-01-04 15:53:05 +0800
commit705017b338d1faa6b53cf4837cdc82e7544dc90b (patch)
tree45be5b9c9b025e1dd6c6dc54ded775b1f660d650
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
-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) {
6358 6358
6359 6359
6360static int ssl_setOptions(lua_State *L) { 6360static int ssl_setOptions(lua_State *L) {
6361 SSL *ssl = checksimple(L, 1, SSL_CTX_CLASS); 6361 SSL *ssl = checksimple(L, 1, SSL_CLASS);
6362 auxL_Integer options = auxL_checkinteger(L, 2); 6362 auxL_Integer options = auxL_checkinteger(L, 2);
6363 6363
6364 auxL_pushinteger(L, SSL_set_options(ssl, options)); 6364 auxL_pushinteger(L, SSL_set_options(ssl, options));
@@ -6368,7 +6368,7 @@ static int ssl_setOptions(lua_State *L) {
6368 6368
6369 6369
6370static int ssl_getOptions(lua_State *L) { 6370static int ssl_getOptions(lua_State *L) {
6371 SSL *ssl = checksimple(L, 1, SSL_CTX_CLASS); 6371 SSL *ssl = checksimple(L, 1, SSL_CLASS);
6372 6372
6373 auxL_pushinteger(L, SSL_get_options(ssl)); 6373 auxL_pushinteger(L, SSL_get_options(ssl));
6374 6374
@@ -6377,7 +6377,7 @@ static int ssl_getOptions(lua_State *L) {
6377 6377
6378 6378
6379static int ssl_clearOptions(lua_State *L) { 6379static int ssl_clearOptions(lua_State *L) {
6380 SSL *ssl = checksimple(L, 1, SSL_CTX_CLASS); 6380 SSL *ssl = checksimple(L, 1, SSL_CLASS);
6381 auxL_Integer options = auxL_checkinteger(L, 2); 6381 auxL_Integer options = auxL_checkinteger(L, 2);
6382 6382
6383 auxL_pushinteger(L, SSL_clear_options(ssl, options)); 6383 auxL_pushinteger(L, SSL_clear_options(ssl, options));