@@ -591,11 +591,11 @@ #endif if (_staticHosts == nil) { OFArray *localhost = -#ifdef HAVE_IPV6 +#ifdef OF_HAVE_IPV6 localhost = [OFArray arrayWithObjects: @"::1", @"127.0.0.1", nil]; #else localhost = [OFArray arrayWithObject: @"127.0.0.1"]; #endif @@ -604,11 +604,11 @@ initWithObject: localhost forKey: @"localhost"]; } if (_nameServers == nil) -#ifdef HAVE_IPV6 +#ifdef OF_HAVE_IPV6 _nameServers = [[OFArray alloc] initWithObjects: @"127.0.0.1", @"::1", nil]; #else _nameServers = [[OFArray alloc] initWithObject: @"127.0.0.1"];