Skip to content
Snippets Groups Projects
Commit db6cfe58 authored by rswindell's avatar rswindell
Browse files

Fix get_ssl_cert() failure log message (wrong number of arguments).

Was this pasted from somewhere else?
parent d4d1840d
Branches
Tags
No related merge requests found
...@@ -999,7 +999,7 @@ static void pop3_thread(void* arg) ...@@ -999,7 +999,7 @@ static void pop3_thread(void* arg)
if (pop3.tls_port) { if (pop3.tls_port) {
if (get_ssl_cert(&scfg, &estr, &level) == -1) { if (get_ssl_cert(&scfg, &estr, &level) == -1) {
if (estr) { if (estr) {
lprintf(level, "%04d !POP3 [%s] %s", socket, host_ip); lprintf(level, "%04d !POP3/TLS Failure getting certificate: %s", socket, estr);
free_crypt_attrstr(estr); free_crypt_attrstr(estr);
} }
mail_close_socket(&socket, &session); mail_close_socket(&socket, &session);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment