diff options
author | Mark Brand <[email protected]> | 2012-12-24 13:49:43 +0000 |
---|---|---|
committer | Mark Brand <[email protected]> | 2012-12-24 13:51:54 +0000 |
commit | 787cc23b0e41b32a995bb9db9fc448bcb123e47f (patch) | |
tree | 5775716f35688244048f3007e94e67b6810608dc /examples | |
parent | Fixed type for maximum line length. (diff) | |
download | vmime-787cc23b0e41b32a995bb9db9fc448bcb123e47f.tar.gz vmime-787cc23b0e41b32a995bb9db9fc448bcb123e47f.zip |
fix example6: missing arg to defaultCertificateVerifier::verify
Diffstat (limited to 'examples')
-rw-r--r-- | examples/example6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example6.cpp b/examples/example6.cpp index 53ff978a..6b7cba24 100644 --- a/examples/example6.cpp +++ b/examples/example6.cpp @@ -153,7 +153,7 @@ public: { setX509TrustedCerts(m_trustedCerts); - defaultCertificateVerifier::verify(chain); + defaultCertificateVerifier::verify(chain, hostname); } catch (vmime::exceptions::certificate_verification_exception&) { |