diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/ChangeLog | 4 | ||||
| -rw-r--r-- | src/include/fake-addrinfo.h | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 618e68c4a..6fb2ee35a 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,5 +1,9 @@ 2001-07-19 Ken Raeburn <raeburn@mit.edu> + * fake-addrinfo.h (translate_h_errno): Supply a default value in + case some unrecognized code is returned. + (HAVE_GETNAMEINFO): Undefine before defining, just in case. + * krb5.hin (krb5_os_hostaddr): Declaration moved... * k5-int.h (krb5_os_hostaddr): ...to here. diff --git a/src/include/fake-addrinfo.h b/src/include/fake-addrinfo.h index a543f98d2..6036b4cac 100644 --- a/src/include/fake-addrinfo.h +++ b/src/include/fake-addrinfo.h @@ -364,13 +364,16 @@ static int translate_h_errno (int h) case NO_ADDRESS: #endif return EAI_NODATA; + default: + return EAI_SYSTEM; } } #endif /* FAI_IMPLEMENTATION */ -#define HAVE_GETADDRINFO /* fake it */ -#define HAVE_GETNAMEINFO /* well, soon... */ +#define HAVE_GETADDRINFO +#undef HAVE_GETNAMEINFO +#define HAVE_GETNAMEINFO #endif /* HAVE_GETADDRINFO */ |
