mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 15:54:22 +02:00
- (djm) Fix AIX limits from Alexandre Oliva <oliva@lsd.ic.unicamp.br>
This commit is contained in:
parent
e477ef6529
commit
0da2eaaf06
1
CREDITS
1
CREDITS
@ -3,6 +3,7 @@ Tatu Ylonen <ylo@cs.hut.fi> - Creator of SSH
|
|||||||
Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
|
Aaron Campbell, Bob Beck, Markus Friedl, Niels Provos,
|
||||||
Theo de Raadt, and Dug Song - Creators of OpenSSH
|
Theo de Raadt, and Dug Song - Creators of OpenSSH
|
||||||
|
|
||||||
|
Alexandre Oliva <oliva@lsd.ic.unicamp.br> - AIX fixes
|
||||||
Andre Lucas <andre.lucas@dial.pipex.com> - new login code, many fixes
|
Andre Lucas <andre.lucas@dial.pipex.com> - new login code, many fixes
|
||||||
Andreas Steinmetz <ast@domdv.de> - Shadow password expiry support
|
Andreas Steinmetz <ast@domdv.de> - Shadow password expiry support
|
||||||
Andrew McGill <andrewm@datrix.co.za> - SCO fixes
|
Andrew McGill <andrewm@datrix.co.za> - SCO fixes
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
- (djm) Don't seek in directory based lastlogs
|
- (djm) Don't seek in directory based lastlogs
|
||||||
- (djm) Fix --with-ipaddr-display configure option test. Patch from
|
- (djm) Fix --with-ipaddr-display configure option test. Patch from
|
||||||
Jarno Huuskonen <jhuuskon@messi.uku.fi>
|
Jarno Huuskonen <jhuuskon@messi.uku.fi>
|
||||||
|
- (djm) Fix AIX limits from Alexandre Oliva <oliva@lsd.ic.unicamp.br>
|
||||||
|
|
||||||
20000813
|
20000813
|
||||||
- (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from
|
- (djm) Add $(srcdir) to includes when compiling (for VPATH). Report from
|
||||||
|
13
session.c
13
session.c
@ -43,12 +43,13 @@ RCSID("$OpenBSD: session.c,v 1.23 2000/07/11 08:11:33 deraadt Exp $");
|
|||||||
|
|
||||||
/* AIX limits */
|
/* AIX limits */
|
||||||
#if defined(HAVE_GETUSERATTR) && !defined(S_UFSIZE_HARD) && defined(S_UFSIZE)
|
#if defined(HAVE_GETUSERATTR) && !defined(S_UFSIZE_HARD) && defined(S_UFSIZE)
|
||||||
# define S_UFSIZE_HARD S_UFSIZE
|
# define S_UFSIZE_HARD S_UFSIZE "_hard"
|
||||||
# define S_UCPU_HARD S_UCPU
|
# define S_UCPU_HARD S_UCPU "_hard"
|
||||||
# define S_UDATA_HARD S_UDATA
|
# define S_UDATA_HARD S_UDATA "_hard"
|
||||||
# define S_USTACK_HARD S_USTACK
|
# define S_USTACK_HARD S_USTACK "_hard"
|
||||||
# define S_URSS_HARD S_URSS
|
# define S_URSS_HARD S_URSS "_hard"
|
||||||
# define S_UCORE_HARD S_UCORE
|
# define S_UCORE_HARD S_UCORE "_hard"
|
||||||
|
# define S_UNOFILE_HARD S_UNOFILE "_hard"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* types */
|
/* types */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user