summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CREDITS1
-rw-r--r--ChangeLog1
-rw-r--r--session.c13
3 files changed, 9 insertions, 6 deletions
diff --git a/CREDITS b/CREDITS
index 67f694bcd..37160ad4c 100644
--- a/CREDITS
+++ b/CREDITS
@@ -3,6 +3,7 @@ Tatu Ylonen <ylo@cs.hut.fi> - Creator of SSH
3Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos, 3Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
4Theo de Raadt, and Dug Song - Creators of OpenSSH 4Theo de Raadt, and Dug Song - Creators of OpenSSH
5 5
6Alexandre Oliva <oliva@lsd.ic.unicamp.br> - AIX fixes
6Andre Lucas <andre.lucas@dial.pipex.com> - new login code, many fixes 7Andre Lucas <andre.lucas@dial.pipex.com> - new login code, many fixes
7Andreas Steinmetz <ast@domdv.de> - Shadow password expiry support 8Andreas Steinmetz <ast@domdv.de> - Shadow password expiry support
8Andrew McGill <andrewm@datrix.co.za> - SCO fixes 9Andrew McGill <andrewm@datrix.co.za> - SCO fixes
diff --git a/ChangeLog b/ChangeLog
index ba4eaa12c..9e9140d15 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@
5 - (djm) Don't seek in directory based lastlogs 5 - (djm) Don't seek in directory based lastlogs
6 - (djm) Fix --with-ipaddr-display configure option test. Patch from 6 - (djm) Fix --with-ipaddr-display configure option test. Patch from
7 Jarno Huuskonen <jhuuskon@messi.uku.fi> 7 Jarno Huuskonen <jhuuskon@messi.uku.fi>
8 - (djm) Fix AIX limits from Alexandre Oliva <oliva@lsd.ic.unicamp.br>
8 9
920000813 1020000813
10 - (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from 11 - (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from
diff --git a/session.c b/session.c
index 47787e778..e68718a7e 100644
--- a/session.c
+++ b/session.c
@@ -43,12 +43,13 @@ RCSID("$OpenBSD: session.c,v 1.23 2000/07/11 08:11:33 deraadt Exp $");
43 43
44/* AIX limits */ 44/* AIX limits */
45#if defined(HAVE_GETUSERATTR) && !defined(S_UFSIZE_HARD) && defined(S_UFSIZE) 45#if defined(HAVE_GETUSERATTR) && !defined(S_UFSIZE_HARD) && defined(S_UFSIZE)
46# define S_UFSIZE_HARD S_UFSIZE 46# define S_UFSIZE_HARD S_UFSIZE "_hard"
47# define S_UCPU_HARD S_UCPU 47# define S_UCPU_HARD S_UCPU "_hard"
48# define S_UDATA_HARD S_UDATA 48# define S_UDATA_HARD S_UDATA "_hard"
49# define S_USTACK_HARD S_USTACK 49# define S_USTACK_HARD S_USTACK "_hard"
50# define S_URSS_HARD S_URSS 50# define S_URSS_HARD S_URSS "_hard"
51# define S_UCORE_HARD S_UCORE 51# define S_UCORE_HARD S_UCORE "_hard"
52# define S_UNOFILE_HARD S_UNOFILE "_hard"
52#endif 53#endif
53 54
54/* types */ 55/* types */