From f79494948c98a40fec9ef960ae43b0e735816bd1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Thu, 25 Dec 2008 00:40:45 +0000 Subject: [PATCH] * don't shut down webcit in the timeout signal handler, sincee we need to serve the "citserver is gone" webpage so the user know what to do... --- webcit/tcp_sockets.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webcit/tcp_sockets.c b/webcit/tcp_sockets.c index 8c603ee1e..b57a2de40 100644 --- a/webcit/tcp_sockets.c +++ b/webcit/tcp_sockets.c @@ -18,8 +18,8 @@ */ RETSIGTYPE timeout(int signum) { - lprintf(1, "Connection timed out.\n"); - exit(3); + lprintf(1, "Connection timed out; unable to reach citserver\n"); + /* no exit here, since we need to server the connection unreachable thing. exit(3); */ } -- 2.30.2