diff options
author | Damien Miller <djm@mindrot.org> | 2021-12-21 23:02:50 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2021-12-21 23:02:50 +0100 |
commit | 715c892f0a5295b391ae92c26ef4d6a86ea96e8e (patch) | |
tree | a6dec7d4903af95a7693578b539b65c16ad48356 /channels.c | |
parent | add agent-restrict.sh file, missed in last commit (diff) | |
download | openssh-715c892f0a5295b391ae92c26ef4d6a86ea96e8e.tar.xz openssh-715c892f0a5295b391ae92c26ef4d6a86ea96e8e.zip |
remove sys/param.h in -portable, after upstream
Diffstat (limited to 'channels.c')
-rw-r--r-- | channels.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/channels.c b/channels.c index 1c714c845..3368098e1 100644 --- a/channels.c +++ b/channels.c @@ -2027,7 +2027,7 @@ channel_handle_wfd(struct ssh *ssh, Channel *c, #ifdef _AIX /* XXX: Later AIX versions can't push as much data to tty */ if (c->wfd_isatty) - dlen = MIN(dlen, 8*1024); + dlen = MINIMUM(dlen, 8*1024); #endif len = write(c->wfd, buf, dlen); |