diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-12-06 18:52:16 +0100 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-12-06 18:52:16 +0100 |
commit | f8f065bc752ca0a448eb90fc8d60516f486dc4ff (patch) | |
tree | 8c468686546dc8673d93c1e629f46c79d65391cc /clientloop.c | |
parent | - deraadt@cvs.openbsd.org 2001/12/02 02:08:32 (diff) | |
download | openssh-f8f065bc752ca0a448eb90fc8d60516f486dc4ff.tar.xz openssh-f8f065bc752ca0a448eb90fc8d60516f486dc4ff.zip |
- itojun@cvs.openbsd.org 2001/12/05 03:50:01
[clientloop.c serverloop.c sshd.c]
deal with LP64 printf issue with sig_atomic_t. from thorpej
Diffstat (limited to 'clientloop.c')
-rw-r--r-- | clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clientloop.c b/clientloop.c index fcd6afdf6..76b8101fe 100644 --- a/clientloop.c +++ b/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); } /* |