Sun 26 Feb 2012 10:52:30 AM UTC, original submission:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=661321
---------- Forwarded Message ----------
Subject: Bug #661321: libexosip2: FTBFS on hurd-i386: typo in variable name
Date: Sun, 26 Feb 2012, 21:25:58
From: Pino Toscano <pino@debian.org>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Package: libexosip2
Version: 3.6.0-2
Severity: important
Tags: patch
User: -unavailable-
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
}
|