mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 08:14:24 +02:00
- (djm) Define AIX hard limits if headers don't. Report from
Bill Painter <william.t.painter@lmco.com>
This commit is contained in:
parent
ab8d1921f4
commit
d17b8d5aee
@ -1,3 +1,7 @@
|
|||||||
|
20000809
|
||||||
|
- (djm) Define AIX hard limits if headers don't. Report from
|
||||||
|
Bill Painter <william.t.painter@lmco.com>
|
||||||
|
|
||||||
20000808
|
20000808
|
||||||
- (djm) Cleanup Redhat RPMs. Generate keys at runtime rather than install
|
- (djm) Cleanup Redhat RPMs. Generate keys at runtime rather than install
|
||||||
time, spec file cleanup.
|
time, spec file cleanup.
|
||||||
|
10
session.c
10
session.c
@ -41,6 +41,16 @@ RCSID("$OpenBSD: session.c,v 1.23 2000/07/11 08:11:33 deraadt Exp $");
|
|||||||
# include <siad.h>
|
# include <siad.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* AIX limits */
|
||||||
|
#if defined(HAVE_GETUSERATTR) && !defined(S_UFSIZE_HARD) && defined(S_UFSIZE)
|
||||||
|
# define S_UFSIZE_HARD S_UFSIZE
|
||||||
|
# define S_UCPU_HARD S_UCPU
|
||||||
|
# define S_UDATA_HARD S_UDATA
|
||||||
|
# define S_USTACK_HARD S_USTACK
|
||||||
|
# define S_URSS_HARD S_URSS
|
||||||
|
# define S_UCORE_HARD S_UCORE
|
||||||
|
#endif
|
||||||
|
|
||||||
/* types */
|
/* types */
|
||||||
|
|
||||||
#define TTYSZ 64
|
#define TTYSZ 64
|
||||||
|
Loading…
x
Reference in New Issue
Block a user