Package: libexosip2
Version: 3.6.0-2
Severity: important
Tags: patch
User: debian-h...@lists.debian.org
Usertags: hurd

Hi,

currently[1], libexosip2 does not build on GNU/Hurd.

The problem is in src/eXtl_udp.c (udp_tl_open): the 'retval' variable
does not exist, while 'ret' does.
Attached there is a patch to fix the name of the return value variable.

[1] 
https://buildd.debian.org/status/fetch.php?pkg=libexosip2&arch=hurd-i386&ver=3.6.0-2&stamp=1330217170

Thanks,
-- 
Pino
--- a/src/eXtl_udp.c
+++ b/src/eXtl_udp.c
@@ -178,7 +178,7 @@
 		res = setsockopt(udp_socket, IPPROTO_IPV6, IPV6_TCLASS,
 			(SOCKET_OPTION_VALUE)&tos, sizeof(tos));
 #else
-		retval = setsockopt(udp_socket, IPPROTO_IPV6, IP_TOS,
+		res = setsockopt(udp_socket, IPPROTO_IPV6, IP_TOS,
 			(SOCKET_OPTION_VALUE)&tos, sizeof(tos));
 #endif
 	}

Reply via email to