summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--openbsd-compat/inet_ntoa.c1
2 files changed, 2 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d772746a..2815cea8e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,7 @@
8 [buffer.c] 8 [buffer.c]
9 do not expand buffer before attempting to reallocate it; markus ok 9 do not expand buffer before attempting to reallocate it; markus ok
10 - (tim) [configure.ac] Fix portability issues. 10 - (tim) [configure.ac] Fix portability issues.
11 - (bal) Missed dead header in inet_ntoa.c
11 12
1220030914 1320030914
13 - (dtucker) [Makefile regress/Makefile] Fix portability issues preventing 14 - (dtucker) [Makefile regress/Makefile] Fix portability issues preventing
@@ -1104,4 +1105,4 @@
1104 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1105 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1105 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1106 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1106 1107
1107$Id: ChangeLog,v 1.2995 2003/09/16 05:40:49 tim Exp $ 1108$Id: ChangeLog,v 1.2996 2003/09/16 17:23:29 mouring Exp $
diff --git a/openbsd-compat/inet_ntoa.c b/openbsd-compat/inet_ntoa.c
index e0384491d..f9fdc9ee5 100644
--- a/openbsd-compat/inet_ntoa.c
+++ b/openbsd-compat/inet_ntoa.c
@@ -43,7 +43,6 @@ static char rcsid[] = "$OpenBSD: inet_ntoa.c,v 1.4 2003/06/02 20:18:35 millert E
43#include <netinet/in.h> 43#include <netinet/in.h>
44#include <arpa/inet.h> 44#include <arpa/inet.h>
45#include <stdio.h> 45#include <stdio.h>
46#include "inet_ntoa.h"
47 46
48char *inet_ntoa(struct in_addr in) 47char *inet_ntoa(struct in_addr in)
49{ 48{