summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--openbsd-compat/port-aix.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 28003b960..f03f1102b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
6 - (dtucker) Bug #543: [configure.ac port-aix.c port-aix.h] 6 - (dtucker) Bug #543: [configure.ac port-aix.c port-aix.h]
7 Call setauthdb() before loginfailed(), which may load password registry- 7 Call setauthdb() before loginfailed(), which may load password registry-
8 specific functions. Based on patch by cawlfiel@us.ibm.com. 8 specific functions. Based on patch by cawlfiel@us.ibm.com.
9 - (dtucker) [port-aix.h] Fix prototypes.
9 10
1020030708 1120030708
11 - (dtucker) [acconfig.h auth-passwd.c configure.ac session.c port-aix.[ch]] 12 - (dtucker) [acconfig.h auth-passwd.c configure.ac session.c port-aix.[ch]]
@@ -679,4 +680,4 @@
679 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 680 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
680 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 681 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
681 682
682$Id: ChangeLog,v 1.2852 2003/07/14 06:41:55 dtucker Exp $ 683$Id: ChangeLog,v 1.2853 2003/07/14 06:43:42 dtucker Exp $
diff --git a/openbsd-compat/port-aix.h b/openbsd-compat/port-aix.h
index 25ceb5b19..16863ec6d 100644
--- a/openbsd-compat/port-aix.h
+++ b/openbsd-compat/port-aix.h
@@ -52,10 +52,10 @@
52 52
53#ifdef WITH_AIXAUTHENTICATE 53#ifdef WITH_AIXAUTHENTICATE
54# define CUSTOM_FAILED_LOGIN 1 54# define CUSTOM_FAILED_LOGIN 1
55void record_failed_login(const char *user, const char *ttyname); 55void record_failed_login(const char *, const char *);
56void aix_setauthdb(const char *); 56void aix_setauthdb(const char *);
57#endif 57#endif
58 58
59void aix_usrinfo(struct passwd *pw); 59void aix_usrinfo(struct passwd *);
60void aix_remove_embedded_newlines(char *); 60void aix_remove_embedded_newlines(char *);
61#endif /* _AIX */ 61#endif /* _AIX */