From: Sven Wegener Date: Mon, 9 Nov 2015 22:17:04 +0000 (+0100) Subject: tvhdhomerun: fix logging subsys X-Git-Tag: v4.2.1~1612 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3c34e2399687be8f31d50dd0fb94bc555b256ff;p=thirdparty%2Ftvheadend.git tvhdhomerun: fix logging subsys Signed-off-by: Sven Wegener --- diff --git a/src/input/mpegts/tvhdhomerun/tvhdhomerun_frontend.c b/src/input/mpegts/tvhdhomerun/tvhdhomerun_frontend.c index a7db1962d..084a53776 100644 --- a/src/input/mpegts/tvhdhomerun/tvhdhomerun_frontend.c +++ b/src/input/mpegts/tvhdhomerun/tvhdhomerun_frontend.c @@ -91,13 +91,13 @@ tvhdhomerun_frontend_input_thread ( void *aux ) /* first setup a local socket for the device to stream to */ sockfd = tvh_socket(AF_INET, SOCK_DGRAM, 0); if(sockfd == -1) { - tvherror("stvhdhomerun", "failed to open socket (%d)", errno); + tvherror("tvhdhomerun", "failed to open socket (%d)", errno); return NULL; } if(fcntl(sockfd, F_SETFL, O_NONBLOCK) != 0) { close(sockfd); - tvherror("stvhdhomerun", "failed to set socket nonblocking (%d)", errno); + tvherror("tvhdhomerun", "failed to set socket nonblocking (%d)", errno); return NULL; } @@ -623,7 +623,7 @@ tvhdhomerun_frontend_create(tvhdhomerun_device_t *hd, struct hdhomerun_discover_ /* Class */ if (!(idc = dvb_network_class_by_fe_type(type))) { - tvherror("stvhdhomerun", "unknown FE type %d", type); + tvherror("tvhdhomerun", "unknown FE type %d", type); return NULL; }