summaryrefslogtreecommitdiff
path: root/serverloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'serverloop.c')
-rw-r--r--serverloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/serverloop.c b/serverloop.c
index 0da805f09..fd1154157 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -35,7 +35,7 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: serverloop.c,v 1.83 2001/11/09 18:59:23 markus Exp $"); 38RCSID("$OpenBSD: serverloop.c,v 1.84 2001/11/22 12:34:22 markus Exp $");
39 39
40#include "xmalloc.h" 40#include "xmalloc.h"
41#include "packet.h" 41#include "packet.h"
@@ -87,7 +87,7 @@ static int client_alive_timeouts = 0;
87 * will exit after that, as soon as forwarded connections have terminated. 87 * will exit after that, as soon as forwarded connections have terminated.
88 */ 88 */
89 89
90static volatile int child_terminated; /* The child has terminated. */ 90static volatile sig_atomic_t child_terminated = 0; /* The child has terminated. */
91 91
92/* prototypes */ 92/* prototypes */
93static void server_init_dispatch(void); 93static void server_init_dispatch(void);