]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
httpc: cosmetic
authorJaroslav Kysela <perex@perex.cz>
Thu, 15 Jun 2017 18:27:30 +0000 (20:27 +0200)
committerJaroslav Kysela <perex@perex.cz>
Thu, 15 Jun 2017 18:46:04 +0000 (20:46 +0200)
src/httpc.c

index cb813040b668d07a4ca1719dedef416850bb4565..06df3fbc3870123a1fd9a35f25c9bbf172782314 100644 (file)
@@ -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;
 }