- (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
This commit is contained in:
Darren Tucker 2003-09-22 13:05:26 +10:00
parent fbe3b36ca9
commit 051c270f88
2 changed files with 6 additions and 2 deletions

View File

@ -19,6 +19,9 @@
- (dtucker) [uidswap.c] Don't test restoration of uid on Cygwin since the - (dtucker) [uidswap.c] Don't test restoration of uid on Cygwin since the
OS does not support permanently dropping privileges. Patch from OS does not support permanently dropping privileges. Patch from
vinschen at redhat.com. vinschen at redhat.com.
- (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
20030919 20030919
- (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
@ -1155,4 +1158,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.3018 2003/09/22 02:54:37 dtucker Exp $ $Id: ChangeLog,v 1.3019 2003/09/22 03:05:26 dtucker Exp $

View File

@ -27,11 +27,12 @@
#include "ssh.h" #include "ssh.h"
#include "log.h" #include "log.h"
#include "servconf.h" #include "servconf.h"
#include "canohost.h"
#include "xmalloc.h"
#ifdef _AIX #ifdef _AIX
#include <uinfo.h> #include <uinfo.h>
#include <../xmalloc.h>
#include "port-aix.h" #include "port-aix.h"
extern ServerOptions options; extern ServerOptions options;