Avoid unused variable warning for OpenSSL 0.9.8

This commit is contained in:
Christian Hohnstaedt 2020-03-29 22:31:25 +02:00
parent 524aff97b8
commit d54aa116db

View File

@ -729,6 +729,8 @@ void pki_evp::writePVKprivate(XFile &file, pem_password_cb *cb) const
ign_openssl_error();
EVP_PKEY_free(pkey);
#else
(void)file;
(void)cb;
throw errorEx("Internal Error");
#endif
}