From 5e71c54b8c642f0aa5273dfcff75c8a8def820dd Mon Sep 17 00:00:00 2001 From: Ben Lindstrom Date: Thu, 6 Dec 2001 16:48:14 +0000 Subject: - markus@cvs.openbsd.org 2001/11/22 12:34:22 [clientloop.c serverloop.c sshd.c] volatile sig_atomic_t --- serverloop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'serverloop.c') diff --git a/serverloop.c b/serverloop.c index 0da805f09..fd1154157 100644 --- a/serverloop.c +++ b/serverloop.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: serverloop.c,v 1.83 2001/11/09 18:59:23 markus Exp $"); +RCSID("$OpenBSD: serverloop.c,v 1.84 2001/11/22 12:34:22 markus Exp $"); #include "xmalloc.h" #include "packet.h" @@ -87,7 +87,7 @@ static int client_alive_timeouts = 0; * will exit after that, as soon as forwarded connections have terminated. */ -static volatile int child_terminated; /* The child has terminated. */ +static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */ /* prototypes */ static void server_init_dispatch(void); -- cgit v1.2.3