summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-09-19 20:46:21 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-09-19 20:46:21 +1000
commit387666a626a625b516ea621e463682e647ffbb50 (patch)
tree41c07dd421f11c0f381786955cdd228cced261f5
parent8f73f41d107687362b47ee879843fd04d1efd6ba (diff)
- (dtucker) [openbsd-compat/port-aix.h] Bug #640: Don't include audit.h
unless required. Reorder to reduce warnings.
-rw-r--r--ChangeLog4
-rw-r--r--openbsd-compat/port-aix.h6
2 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 31ce3af46..94b8aa5db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
3 djast AT cs.toronto.edu 3 djast AT cs.toronto.edu
4 - (djm) Bug #680: Remove missing inet_ntoa.h header reference 4 - (djm) Bug #680: Remove missing inet_ntoa.h header reference
5 - (djm) Bug #646: Fix location of x11-ssh-askpass; Jim 5 - (djm) Bug #646: Fix location of x11-ssh-askpass; Jim
6 - (dtucker) [openbsd-compat/port-aix.h] Bug #640: Don't include audit.h
7 unless required. Reorder to reduce warnings.
6 8
720030918 920030918
8 - (djm) Bug #652: Fix empty password auth 10 - (djm) Bug #652: Fix empty password auth
@@ -1124,4 +1126,4 @@
1124 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1126 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1125 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1127 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1126 1128
1127$Id: ChangeLog,v 1.2994.2.10 2003/09/19 07:06:06 djm Exp $ 1129$Id: ChangeLog,v 1.2994.2.11 2003/09/19 10:46:21 dtucker Exp $
diff --git a/openbsd-compat/port-aix.h b/openbsd-compat/port-aix.h
index 09e7f9e97..94c8c5119 100644
--- a/openbsd-compat/port-aix.h
+++ b/openbsd-compat/port-aix.h
@@ -1,4 +1,4 @@
1/* $Id: port-aix.h,v 1.14 2003/08/29 16:59:52 mouring Exp $ */ 1/* $Id: port-aix.h,v 1.14.2.1 2003/09/19 10:46:22 dtucker Exp $ */
2 2
3/* 3/*
4 * 4 *
@@ -30,10 +30,10 @@
30#ifdef WITH_AIXAUTHENTICATE 30#ifdef WITH_AIXAUTHENTICATE
31# include <login.h> 31# include <login.h>
32# include <userpw.h> 32# include <userpw.h>
33# include <usersec.h> 33# if defined(HAVE_SYS_AUDIT_H) && defined(AIX_LOGINFAILED_4ARG)
34# ifdef HAVE_SYS_AUDIT_H
35# include <sys/audit.h> 34# include <sys/audit.h>
36# endif 35# endif
36# include <usersec.h>
37#endif 37#endif
38 38
39/* Some versions define r_type in the above headers, which causes a conflict */ 39/* Some versions define r_type in the above headers, which causes a conflict */