diff options
author | Patrick Monnerat <pm@datasphere.ch> | 2013-10-30 11:12:06 +0100 |
---|---|---|
committer | Patrick Monnerat <pm@datasphere.ch> | 2013-10-30 11:12:06 +0100 |
commit | f6c335d63f2da025a0a3efde1fe59e3bb7189b70 (patch) | |
tree | 76fafce3ea32f251118b686fabf288f604b6ef88 /lib/hostcheck.c | |
parent | 2bd72fa61ca21c2072e09cc6808db0371847bb2c (diff) | |
download | curl-f6c335d63f2da025a0a3efde1fe59e3bb7189b70.tar.gz |
NSS: support for CERTINFO feature
Diffstat (limited to 'lib/hostcheck.c')
-rw-r--r-- | lib/hostcheck.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/hostcheck.c b/lib/hostcheck.c index abd1fa0c3..4be5baa92 100644 --- a/lib/hostcheck.c +++ b/lib/hostcheck.c @@ -23,7 +23,7 @@ #include "curl_setup.h" #if defined(USE_SSLEAY) || defined(USE_AXTLS) || defined(USE_QSOSSL) || \ - defined(USE_GSKIT) + defined(USE_GSKIT) || defined(USE_NSS) /* these backends use functions from this file */ #include "hostcheck.h" @@ -94,4 +94,4 @@ int Curl_cert_hostcheck(const char *match_pattern, const char *hostname) return 0; } -#endif /* SSLEAY or AXTLS or QSOSSL or GSKIT */ +#endif /* SSLEAY or AXTLS or QSOSSL or GSKIT or NSS */ |