diff options
author | 2001-12-05 03:50:01 +0000 | |
---|---|---|
committer | 2001-12-05 03:50:01 +0000 | |
commit | 207884378df29fde546a5ccc4f87efcf80d3e563 (patch) | |
tree | 175fbe950590558c3f2c27b510bc06ce90440c51 /usr.bin/ssh/clientloop.c | |
parent | Enable MSCP disk support, since although untested due to lack of (diff) | |
download | wireguard-openbsd-207884378df29fde546a5ccc4f87efcf80d3e563.tar.xz wireguard-openbsd-207884378df29fde546a5ccc4f87efcf80d3e563.zip |
deal with LP64 printf issue with sig_atomic_t. from thorpej
Diffstat (limited to 'usr.bin/ssh/clientloop.c')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index fcd6afdf6b4..76b8101fe81 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -59,7 +59,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.88 2001/11/22 12:34:22 markus Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.89 2001/12/05 03:50:01 itojun Exp $"); #include "ssh.h" #include "ssh1.h" @@ -949,7 +949,7 @@ client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id) if (received_signal) { if (in_non_blocking_mode) /* XXX */ leave_non_blocking(); - fatal("Killed by signal %d.", received_signal); + fatal("Killed by signal %d.", (int) received_signal); } /* |