summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--openbsd-compat/port-aix.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 51c5584e4..141666e76 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,9 @@
19 - (dtucker) [uidswap.c] Don't test restoration of uid on Cygwin since the 19 - (dtucker) [uidswap.c] Don't test restoration of uid on Cygwin since the
20 OS does not support permanently dropping privileges. Patch from 20 OS does not support permanently dropping privileges. Patch from
21 vinschen at redhat.com. 21 vinschen at redhat.com.
22 - (dtucker) [openbsd-compat/port-aix.c] Use correct include for xmalloc.h,
23 add canohost.h to stop warning. Based on patch from openssh-unix-dev at
24 thewrittenword.com
22 25
2320030919 2620030919
24 - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; 27 - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
@@ -1155,4 +1158,4 @@
1155 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1158 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1156 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1159 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1157 1160
1158$Id: ChangeLog,v 1.3018 2003/09/22 02:54:37 dtucker Exp $ 1161$Id: ChangeLog,v 1.3019 2003/09/22 03:05:26 dtucker Exp $
diff --git a/openbsd-compat/port-aix.c b/openbsd-compat/port-aix.c
index 7a981634b..9fbcce936 100644
--- a/openbsd-compat/port-aix.c
+++ b/openbsd-compat/port-aix.c
@@ -27,11 +27,12 @@
27#include "ssh.h" 27#include "ssh.h"
28#include "log.h" 28#include "log.h"
29#include "servconf.h" 29#include "servconf.h"
30#include "canohost.h"
31#include "xmalloc.h"
30 32
31#ifdef _AIX 33#ifdef _AIX
32 34
33#include <uinfo.h> 35#include <uinfo.h>
34#include <../xmalloc.h>
35#include "port-aix.h" 36#include "port-aix.h"
36 37
37extern ServerOptions options; 38extern ServerOptions options;