* don't shut down webcit in the timeout signal handler, sincee we need to serve the...
authorWilfried Göesgens <willi@citadel.org>
Thu, 25 Dec 2008 00:40:45 +0000 (00:40 +0000)
committerWilfried Göesgens <willi@citadel.org>
Thu, 25 Dec 2008 00:40:45 +0000 (00:40 +0000)
webcit/tcp_sockets.c

index 8c603ee1e720fa300961485c54341faf33426c1b..b57a2de40208cfc27ccc269c210ad8008ebdbb37 100644 (file)
@@ -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); */
 }