From: Jaroslav Kysela Date: Thu, 15 Jun 2017 18:27:30 +0000 (+0200) Subject: httpc: cosmetic X-Git-Tag: v4.2.3~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89250fee1688d1c0e9063ff48c5ae7875bce1251;p=thirdparty%2Ftvheadend.git httpc: cosmetic --- diff --git a/src/httpc.c b/src/httpc.c index cb813040b..06df3fbc3 100644 --- a/src/httpc.c +++ b/src/httpc.c @@ -203,7 +203,7 @@ http_client_poll_dir ( http_client_t *hc, int in, int out ) ev.data.ptr = hc; tvhpoll_rem(hc->hc_efd, &ev, 1); } else if (hc->hc_pevents != events) { - tvhtrace(LS_HTTPC, "%04X: add poll for input%s", shortid(hc), out ? " and output" : ""); + tvhtrace(LS_HTTPC, "%04X: add poll for input%s (%x)", shortid(hc), out ? " and output" : "", events); memset(&ev, 0, sizeof(ev)); ev.fd = hc->hc_fd; ev.events = events | TVHPOLL_IN; @@ -212,7 +212,7 @@ http_client_poll_dir ( http_client_t *hc, int in, int out ) } } hc->hc_pevents = events; - /* make sure to se the correct errno for our SSL routines */ + /* make sure to set the correct errno for our SSL routines */ errno = EAGAIN; }