From e8ea01bd07eedb3c98bc0725e5799fe08499262a Mon Sep 17 00:00:00 2001 From: Jens Granseuer Date: Thu, 7 Aug 2008 14:45:51 -0400 Subject: Bug 13387: Fix compilation failure with AI_ADDRCONFIG Signed-off-by: Colin Walters --- dbus/dbus-sysdeps-unix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbus/dbus-sysdeps-unix.c b/dbus/dbus-sysdeps-unix.c index 18b4967b..3f963bca 100644 --- a/dbus/dbus-sysdeps-unix.c +++ b/dbus/dbus-sysdeps-unix.c @@ -79,8 +79,8 @@ #define O_BINARY 0 #endif -#ifndef _AI_ADDRCONFIG -#define _AI_ADDRCONFIG 0 +#ifndef AI_ADDRCONFIG +#define AI_ADDRCONFIG 0 #endif #ifndef HAVE_SOCKLEN_T -- cgit