INN commit: trunk (CONTRIBUTORS lib/network.c)
INN Commit
Russ_Allbery at isc.org
Sat Oct 25 17:13:35 UTC 2008
Date: Saturday, October 25, 2008 @ 10:13:34
Author: iulius
Revision: 8145
EAI_ADDRFAMILY was obsoleted with RFC 3493.
Thanks to Wolfgang M. Weyand for having pointed that out
(it causes compilation issues).
Modified:
trunk/CONTRIBUTORS
trunk/lib/network.c
---------------+
CONTRIBUTORS | 3 ++-
lib/network.c | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
Modified: CONTRIBUTORS
===================================================================
--- CONTRIBUTORS 2008-10-25 17:06:15 UTC (rev 8144)
+++ CONTRIBUTORS 2008-10-25 17:13:34 UTC (rev 8145)
@@ -268,4 +268,5 @@
Kai Gallasch, Ollivier Robert, Ivan Shmakov, Kachun Lee, Kirill Berezin,
D. Stussy, Alan Schwartz, Shalon Wood, Nick Couchman, Jakub Bogusz,
J. Thomas Halliley, Matija Nalis, Geraint A. Edwards, Alexander Bartolich,
-David Hlacik, Andreas Mattheiss, James Ralston, Wim Lewis
+David Hlacik, Andreas Mattheiss, James Ralston, Wim Lewis, Johan van Selst,
+Wolfgang M. Weyand
Modified: lib/network.c
===================================================================
--- lib/network.c 2008-10-25 17:06:15 UTC (rev 8144)
+++ lib/network.c 2008-10-25 17:13:34 UTC (rev 8145)
@@ -332,7 +332,7 @@
error = getaddrinfo(NULL, service, &hints, &addrs);
if (error < 0) {
#ifdef IPV6_V6ONLY
- if (error != EAI_ADDRFAMILY && error != EAI_FAMILY)
+ if (error != EAI_FAMILY)
#endif
warn("getaddrinfo failed: %s", gai_strerror(error));
return;
More information about the inn-committers
mailing list