summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--openbsd-compat/inet_ntop.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 527e4196a..2b12e7bb9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
3 patch based on 2.5.2 version by djm. 3 patch based on 2.5.2 version by djm.
4 - (bal) Build manpages and config files once unless changed. Patch by 4 - (bal) Build manpages and config files once unless changed. Patch by
5 Carson Gaspar <carson@taltos.org> 5 Carson Gaspar <carson@taltos.org>
6 - (bal) arpa/nameser.h does not exist on Cygwin. Patch by Corinna
7 Vinschen <vinschen@redhat.com>
6 8
720010425 920010425
8 - OpenBSD CVS Sync 10 - OpenBSD CVS Sync
@@ -5258,4 +5260,4 @@
5258 - Wrote replacements for strlcpy and mkdtemp 5260 - Wrote replacements for strlcpy and mkdtemp
5259 - Released 1.0pre1 5261 - Released 1.0pre1
5260 5262
5261$Id: ChangeLog,v 1.1173 2001/04/27 00:31:07 mouring Exp $ 5263$Id: ChangeLog,v 1.1174 2001/04/27 00:34:44 mouring Exp $
diff --git a/openbsd-compat/inet_ntop.c b/openbsd-compat/inet_ntop.c
index 1c2357961..bf3d97ade 100644
--- a/openbsd-compat/inet_ntop.c
+++ b/openbsd-compat/inet_ntop.c
@@ -34,7 +34,9 @@ static char rcsid[] = "$OpenBSD: inet_ntop.c,v 1.1 1997/03/13 19:07:32 downsj Ex
34#include "openbsd-compat/fake-socket.h" 34#include "openbsd-compat/fake-socket.h"
35#include <netinet/in.h> 35#include <netinet/in.h>
36#include <arpa/inet.h> 36#include <arpa/inet.h>
37#ifndef HAVE_CYGWIN
37#include <arpa/nameser.h> 38#include <arpa/nameser.h>
39#endif
38#include <string.h> 40#include <string.h>
39#include <errno.h> 41#include <errno.h>
40#include <stdio.h> 42#include <stdio.h>