From ad502c5ffb569e01ddf5836fbfe70606f257c4be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sun, 4 Jan 2004 19:02:41 +0000 Subject: [PATCH] correct ifdef for EAI_ADDRFAMILY git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13250 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/gai_strerror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/roken/gai_strerror.c b/lib/roken/gai_strerror.c index 9fe978024..d64391b11 100644 --- a/lib/roken/gai_strerror.c +++ b/lib/roken/gai_strerror.c @@ -43,7 +43,7 @@ static struct gai_error { char *str; } errors[] = { {EAI_NOERROR, "no error"}, -#ifndef EAI_ADDRFAMILY +#ifdef EAI_ADDRFAMILY {EAI_ADDRFAMILY, "address family for nodename not supported"}, #endif {EAI_AGAIN, "temporary failure in name resolution"},