Commit 2a5e1057 authored by unknown's avatar unknown
Browse files

- 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
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -36,6 +36,10 @@
extern int h_errno;
#endif

#ifndef HAVE_IN_ADDR_T
#define in_addr_t u_long
#endif


static int silent=0;