wrap at 80 columns
authordjm <djm@openbsd.org>
Sun, 29 Aug 2021 23:44:07 +0000 (23:44 +0000)
committerdjm <djm@openbsd.org>
Sun, 29 Aug 2021 23:44:07 +0000 (23:44 +0000)
usr.bin/ssh/clientloop.c

index 70d5df1..27b869d 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: clientloop.c,v 1.369 2021/07/23 04:04:52 djm Exp $ */
+/* $OpenBSD: clientloop.c,v 1.370 2021/08/29 23:44:07 djm Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1397,7 +1397,8 @@ client_loop(struct ssh *ssh, int have_pty, int escape_char_arg,
         * exit status to be returned.  In that case, clear error code if the
         * connection was deliberately terminated at this end.
         */
-       if (options.session_type == SESSION_TYPE_NONE && received_signal == SIGTERM) {
+       if (options.session_type == SESSION_TYPE_NONE &&
+           received_signal == SIGTERM) {
                received_signal = 0;
                exit_status = 0;
        }