Module: kamailio Branch: master Commit: 21321c70358997f354326be048b22c7b2dfb045a URL: https://github.com/kamailio/kamailio/commit/21321c70358997f354326be048b22c7b...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2016-06-27T11:54:08+02:00
auth_identity: include openssl/x509_vfy.h
- looks like being required by openssl 1.1.0 to get the definition of X509_STORE_CTX - reported by Victor Seva, GH #685
---
Modified: modules/auth_identity/auth_crypt.c
---
Diff: https://github.com/kamailio/kamailio/commit/21321c70358997f354326be048b22c7b... Patch: https://github.com/kamailio/kamailio/commit/21321c70358997f354326be048b22c7b...
---
diff --git a/modules/auth_identity/auth_crypt.c b/modules/auth_identity/auth_crypt.c index 18abb4c..2aa6a0a 100644 --- a/modules/auth_identity/auth_crypt.c +++ b/modules/auth_identity/auth_crypt.c @@ -35,6 +35,7 @@ #include <openssl/sha.h> #include <openssl/x509.h> #include <openssl/x509v3.h> +#include <openssl/x509_vfy.h>
#include "../../mem/mem.h" #include "../../parser/parse_uri.h"