summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--serverloop.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/serverloop.c b/serverloop.c
index a8c99e2e0..340b19a5a 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: serverloop.c,v 1.221 2020/01/25 22:41:01 djm Exp $ */ 1/* $OpenBSD: serverloop.c,v 1.222 2020/01/30 07:21:38 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -359,9 +359,10 @@ process_output(struct ssh *ssh, fd_set *writeset, int connection_out)
359 359
360 /* Send any buffered packet data to the client. */ 360 /* Send any buffered packet data to the client. */
361 if (FD_ISSET(connection_out, writeset)) { 361 if (FD_ISSET(connection_out, writeset)) {
362 if ((r = ssh_packet_write_poll(ssh)) != 0) 362 if ((r = ssh_packet_write_poll(ssh)) != 0) {
363 fatal("%s: ssh_packet_write_poll: %s", 363 sshpkt_fatal(ssh, r, "%s: ssh_packet_write_poll",
364 __func__, ssh_err(r)); 364 __func__);
365 }
365 } 366 }
366} 367}
367 368