Fix issue with generation of new certificate

This commit is contained in:
albertony 2021-11-12 15:23:12 +01:00
parent 2db65f0866
commit 20a1bd2e4c
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ void generate_pem_self_signed_cert(const std::string& path)
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) {
throw std::runtime_error("Could not open certificate output path");
}