diff options
author | Patrick Monnerat <pm@datasphere.ch> | 2013-07-15 18:16:13 +0200 |
---|---|---|
committer | Patrick Monnerat <pm@datasphere.ch> | 2013-07-15 18:16:13 +0200 |
commit | 3a24cb7bc456366cbc3a03f7ab6d2576105a1f2d (patch) | |
tree | ead626ea302a8708b356930707610926443415d1 /lib/hostcheck.c | |
parent | e839446c2a5558ffd43eb8c381c7485c2d9a210c (diff) | |
download | curl-3a24cb7bc456366cbc3a03f7ab6d2576105a1f2d.tar.gz |
x509asn1.c,x509asn1.h: new module to support ASN.1/X509 parsing & info extract
Use from qssl backend
Diffstat (limited to 'lib/hostcheck.c')
-rw-r--r-- | lib/hostcheck.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/hostcheck.c b/lib/hostcheck.c index 44ad822f0..ef32d8cff 100644 --- a/lib/hostcheck.c +++ b/lib/hostcheck.c @@ -22,8 +22,8 @@ #include "curl_setup.h" -#if defined(USE_SSLEAY) || defined(USE_AXTLS) -/* these two backends use functions from this file */ +#if defined(USE_SSLEAY) || defined(USE_AXTLS) || defined(USE_QSOSSL) +/* these backends use functions from this file */ #include "hostcheck.h" #include "rawstr.h" @@ -93,4 +93,4 @@ int Curl_cert_hostcheck(const char *match_pattern, const char *hostname) return 0; } -#endif /* SSLEAY or AXTLS */ +#endif /* SSLEAY or AXTLS or QSOSSL */ |