summaryrefslogtreecommitdiffstats
path: root/channels.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2021-04-03 08:47:37 +0200
committerDamien Miller <djm@mindrot.org>2021-04-03 08:47:37 +0200
commit57ed647ee07bb883a2f2264231bcd1df6a5b9392 (patch)
treeb6857717f688761bc7c4891ece4b23a4413076fa /channels.c
parentupstream: highly polished whitespace, mostly fixing spaces-for-tab (diff)
downloadopenssh-57ed647ee07bb883a2f2264231bcd1df6a5b9392.tar.xz
openssh-57ed647ee07bb883a2f2264231bcd1df6a5b9392.zip
polish whitespace for portable files
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels.c b/channels.c
index 2f4022539..32d1f6178 100644
--- a/channels.c
+++ b/channels.c
@@ -1921,7 +1921,7 @@ channel_handle_rfd(struct ssh *ssh, Channel *c,
((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
return 1;
#ifndef PTY_ZEROREAD
- if (len <= 0) {
+ if (len <= 0) {
#else
if ((!c->isatty && len <= 0) ||
(c->isatty && (len < 0 || (len == 0 && errno != 0)))) {