summaryrefslogtreecommitdiff
path: root/clientloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'clientloop.c')
-rw-r--r--clientloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/clientloop.c b/clientloop.c
index b8352f6bf..9a7dc0ab0 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -636,7 +636,7 @@ static void
636client_process_net_input(fd_set *readset) 636client_process_net_input(fd_set *readset)
637{ 637{
638 int len, cont = 0; 638 int len, cont = 0;
639 char buf[8192]; 639 char buf[SSH_IOBUFSZ];
640 640
641 /* 641 /*
642 * Read input from the server, and add any such data to the buffer of 642 * Read input from the server, and add any such data to the buffer of
@@ -1129,7 +1129,7 @@ static void
1129client_process_input(fd_set *readset) 1129client_process_input(fd_set *readset)
1130{ 1130{
1131 int len; 1131 int len;
1132 char buf[8192]; 1132 char buf[SSH_IOBUFSZ];
1133 1133
1134 /* Read input from stdin. */ 1134 /* Read input from stdin. */
1135 if (FD_ISSET(fileno(stdin), readset)) { 1135 if (FD_ISSET(fileno(stdin), readset)) {