From a23722910e703e7464ebc6b0447c719937e2850e Mon Sep 17 00:00:00 2001 From: tiptorrent development team Date: Tue, 14 Sep 2021 14:06:38 +0200 Subject: specify current state when displaying unknown error --- src/core.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core.c b/src/core.c index f46df39..fa1bf73 100644 --- a/src/core.c +++ b/src/core.c @@ -188,8 +188,8 @@ static void tip_client_read_cb(struct ev_loop *loop, struct ev_io *io, int event inet_ntoa(cli->addr.sin_addr), ntohs(cli->addr.sin_port)); goto close; default: - syslog(LOG_ERR, "unknown read state, critical internal error for %s:%hu\n", - inet_ntoa(cli->addr.sin_addr), ntohs(cli->addr.sin_port)); + syslog(LOG_ERR, "unknown read state %d, critical internal error for %s:%hu\n", + cli->state, inet_ntoa(cli->addr.sin_addr), ntohs(cli->addr.sin_port)); goto close; } return; @@ -295,8 +295,8 @@ static void tip_client_write_cb(struct ev_loop *loop, struct ev_io *io, int even } break; default: - syslog(LOG_ERR, "unknown write state, critical internal error for %s:%hu\n", - inet_ntoa(cli->addr.sin_addr), ntohs(cli->addr.sin_port)); + syslog(LOG_ERR, "unknown write state %d, critical internal error for %s:%hu\n", + cli->state, inet_ntoa(cli->addr.sin_addr), ntohs(cli->addr.sin_port)); goto close; } return; -- cgit v1.2.3-18-g5258