diff options
author | dtucker@openbsd.org <dtucker@openbsd.org> | 2017-09-18 12:03:24 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2017-09-19 14:26:43 +1000 |
commit | a3839d8d2b89ff1a80cadd4dd654336710de2c9e (patch) | |
tree | 11f64acb3e4a970df4cd1ca35cad86081d5797cd /mux.c | |
parent | 30484e5e5f0b63d2c6ba32c6b85f06b6c6fa55fc (diff) |
upstream commit
Prevent type mismatch warning in debug on platforms where
sig_atomic_t != int. ok djm@
Upstream-ID: 306e2375eb0364a4c68e48f091739bea4f4892ed
Diffstat (limited to 'mux.c')
-rw-r--r-- | mux.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: mux.c,v 1.67 2017/09/12 06:35:32 djm Exp $ */ | 1 | /* $OpenBSD: mux.c,v 1.68 2017/09/18 12:03:24 dtucker Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org> | 3 | * Copyright (c) 2002-2008 Damien Miller <djm@openbsd.org> |
4 | * | 4 | * |
@@ -2001,7 +2001,7 @@ mux_client_request_session(int fd) | |||
2001 | leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE); | 2001 | leave_raw_mode(options.request_tty == REQUEST_TTY_FORCE); |
2002 | 2002 | ||
2003 | if (muxclient_terminate) { | 2003 | if (muxclient_terminate) { |
2004 | debug2("Exiting on signal %d", muxclient_terminate); | 2004 | debug2("Exiting on signal %ld", (long)muxclient_terminate); |
2005 | exitval = 255; | 2005 | exitval = 255; |
2006 | } else if (!exitval_seen) { | 2006 | } else if (!exitval_seen) { |
2007 | debug2("Control master terminated unexpectedly"); | 2007 | debug2("Control master terminated unexpectedly"); |