From ecdda481f5b3f2eebe05b696514ff1019a149407 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Sun, 25 May 2014 22:11:15 +0200 Subject: [PATCH] udp: fix error messages for IPv6 multicast not supported --- src/udp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/udp.c b/src/udp.c index 655e468f..6e11752e 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 }