Merge pull request #1425 from albertony/cert-gen-fix
Fix issue with generation of new certificate
This commit is contained in:
commit
4a978c8331
|
@ -190,7 +190,7 @@ void generate_pem_self_signed_cert(const std::string& path)
|
||||||
|
|
||||||
X509_sign(cert, private_key, EVP_sha256());
|
X509_sign(cert, private_key, EVP_sha256());
|
||||||
|
|
||||||
auto fp = fopen_utf8_path(path.c_str(), "r");
|
auto fp = fopen_utf8_path(path.c_str(), "w");
|
||||||
if (!fp) {
|
if (!fp) {
|
||||||
throw std::runtime_error("Could not open certificate output path");
|
throw std::runtime_error("Could not open certificate output path");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue