diff options
author | Omar Polo <op@omarpolo.com> | 2022-04-12 17:40:58 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2022-04-12 17:40:58 +0000 |
commit | 7b27af838898f379a9140ddbcb07313f937c2f69 (patch) | |
tree | 26eec3e4bfb48f9eea609b0daf0f44c08aa5b34f /utils.c | |
parent | 296220060794054c088185c5e090379f24ac56a5 (diff) |
log when the certificate was successfully generated
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -171,6 +171,8 @@ gen_certificate(const char *hostname, const char *certpath, const char *keypath) BN_free(e); X509_free(x509); RSA_free(rsa); + + log_notice(NULL, "certificate successfully generated"); } X509_STORE * |