diff options
author | william <william@25thandclement.com> | 2015-04-16 21:03:57 -0700 |
---|---|---|
committer | william <william@25thandclement.com> | 2015-04-16 21:03:57 -0700 |
commit | b5c0bb622f55b6e52a1ae1a5ec5a4ded0cded96b (patch) | |
tree | fc6de286ef09e080c74d9aeef30241336e4b872d /src | |
parent | 8dbe7e424adcfcf0bec4c8573b874d733c5b2a66 (diff) | |
download | luaossl-b5c0bb622f55b6e52a1ae1a5ec5a4ded0cded96b.tar.gz luaossl-b5c0bb622f55b6e52a1ae1a5ec5a4ded0cded96b.tar.bz2 luaossl-b5c0bb622f55b6e52a1ae1a5ec5a4ded0cded96b.zip |
don't care about the SSL_CTX class index
Diffstat (limited to 'src')
-rw-r--r-- | src/openssl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/openssl.c b/src/openssl.c index 163ba7f..90db798 100644 --- a/src/openssl.c +++ b/src/openssl.c | |||
@@ -578,7 +578,6 @@ static void lib_setintegers(lua_State *L, const integer_Reg *l) { | |||
578 | static struct { | 578 | static struct { |
579 | int flags; | 579 | int flags; |
580 | 580 | ||
581 | int SSL_CTX_ex_index; | ||
582 | void (*X509_STORE_free)(X509_STORE *); | 581 | void (*X509_STORE_free)(X509_STORE *); |
583 | 582 | ||
584 | struct { | 583 | struct { |
@@ -586,7 +585,6 @@ static struct { | |||
586 | } tmp; | 585 | } tmp; |
587 | } compat = { | 586 | } compat = { |
588 | .flags = 0, | 587 | .flags = 0, |
589 | .SSL_CTX_ex_index = -1, | ||
590 | .X509_STORE_free = &X509_STORE_free, | 588 | .X509_STORE_free = &X509_STORE_free, |
591 | }; | 589 | }; |
592 | 590 | ||