diff options
author | 2001-11-22 12:34:22 +0000 | |
---|---|---|
committer | 2001-11-22 12:34:22 +0000 | |
commit | 00330d402be8a9ef7ec477f829b9903fc6ed13cc (patch) | |
tree | 995e566fbd449d36c4c68ae6e5cfd726507df35a /usr.bin/ssh/clientloop.c | |
parent | Nit. (diff) | |
download | wireguard-openbsd-00330d402be8a9ef7ec477f829b9903fc6ed13cc.tar.xz wireguard-openbsd-00330d402be8a9ef7ec477f829b9903fc6ed13cc.zip |
volatile sig_atomic_t
Diffstat (limited to 'usr.bin/ssh/clientloop.c')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index cbcb1d1998a..fcd6afdf6b4 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.87 2001/11/09 18:59:23 markus Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.88 2001/11/22 12:34:22 markus Exp $"); #include "ssh.h" #include "ssh1.h" @@ -101,8 +101,8 @@ extern char *host; * window size to be sent to the server a little later. This is volatile * because this is updated in a signal handler. */ -static volatile int received_window_change_signal = 0; -static volatile int received_signal = 0; +static volatile sig_atomic_t received_window_change_signal = 0; +static volatile sig_atomic_t received_signal = 0; /* Flag indicating whether the user\'s terminal is in non-blocking mode. */ static int in_non_blocking_mode = 0; |