blob: 17acb791f45305d54896326f6af6316092bfce37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- lib/direct/log.c.orig 2012-05-23 13:43:12 UTC
+++ lib/direct/log.c
@@ -335,12 +335,14 @@ parse_host_addr( const char *hostp
D_ERROR( "Direct/Log: Port %s is unreachable!\n", portstr );
return DR_FAILURE;
+/*
#ifdef EAI_ADDRFAMILY
case EAI_ADDRFAMILY:
#endif
case EAI_NODATA:
D_ERROR( "Direct/Log: Host found, but has no address!\n" );
return DR_FAILURE;
+*/
case EAI_MEMORY:
return D_OOM();
|