Skip to content

Commit

Permalink
fix log typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Mauchle committed Jul 1, 2019
1 parent dbd87b0 commit 0d0b23f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ void *tlsclientrd(void *arg) {
if (!buf) {
if (SSL_get_shutdown(server->ssl) || server->lostrqs) {
if (SSL_get_shutdown(server->ssl))
debug (DBG_WARN, "tlscleintrd: connection to server %s lost", server->conf->name);
debug (DBG_WARN, "tlsclientrd: connection to server %s lost", server->conf->name);
else if (server->lostrqs)
debug (DBG_WARN, "tlsclientrd: server %s did not respond, closing connection.", server->conf->name);
if (server->dynamiclookuparg)
Expand Down

0 comments on commit 0d0b23f

Please sign in to comment.