Commit 2a5e1057 authored by unknown's avatar unknown

- backported compatibility fix for extra/resolveip.c from 4.0

   to be able to compile on HP-UX 10.20 (which does not have in_add_t).


extra/resolveip.c:
   - backport compatibility fix from 4.0 to be able to compile on HP-UX 10.20
     (which does not have in_add_t).
parent 15cb9cae
...@@ -36,6 +36,10 @@ ...@@ -36,6 +36,10 @@
extern int h_errno; extern int h_errno;
#endif #endif
#ifndef HAVE_IN_ADDR_T
#define in_addr_t u_long
#endif
static int silent=0; static int silent=0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment