From: Jaroslav Kysela Date: Sun, 25 May 2014 20:11:15 +0000 (+0200) Subject: udp: fix error messages for IPv6 multicast not supported X-Git-Tag: v4.1~2055 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecdda481f5b3f2eebe05b696514ff1019a149407;p=thirdparty%2Ftvheadend.git udp: fix error messages for IPv6 multicast not supported --- diff --git a/src/udp.c b/src/udp.c index 655e468f1..6e11752e7 100644 --- a/src/udp.c +++ b/src/udp.c @@ -217,7 +217,7 @@ udp_bind ( const char *subsystem, const char *name, name, buf, strerror(errno)); } #else - tvherror(name, "IPv6 multicast not supported"); + tvherror(subsystem, "IPv6 multicast not supported"); goto error; #endif } @@ -333,7 +333,7 @@ udp_connect ( const char *subsystem, const char *name, name, ifname, strerror(errno)); } #else - tvherror(name, "IPv6 multicast not supported"); + tvherror(subsystem, "IPv6 multicast not supported"); goto error; #endif }