summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-09-22 13:05:48 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-09-22 13:05:48 +1000
commit537d716831e65176b7ec1ac52b7ea370d1e9e7c0 (patch)
tree1da6f445c2bd028693db7ce52143b268b76a4880
parent8ceeb269937e6956d6b97948d9d8f717d17d3eaf (diff)
- (dtucker) [openbsd-compat/port-aix.c] Use correct include for xmalloc.h,
add canohost.h to stop warning. Based on patch from openssh-unix-dev at thewrittenword.com
-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 29951f6d5..fb121b124 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;
@@ -1151,4 +1154,4 @@
1151 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1154 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1152 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1155 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1153 1156
1154$Id: ChangeLog,v 1.2994.2.21 2003/09/22 02:55:20 dtucker Exp $ 1157$Id: ChangeLog,v 1.2994.2.22 2003/09/22 03:05:48 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;