blob: c138d0cf64443409c54b25aea3d97e114603587a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- twhttpd.c.orig Sat Aug 31 05:16:35 2002
+++ twhttpd.c Wed Sep 25 12:02:49 2002
@@ -33,7 +33,7 @@
#include <signal.h>
#include <time.h>
#include <unistd.h>
-#include <wait.h>
+#include <sys/wait.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/types.h>
@@ -3882,7 +3882,7 @@
lz_flush(hd->fd, &hd->fd_lzb);
}
syslog(LOG_ERR, "Exiting Testing Server\n");
- exit;
+ exit(0);
}
//////////////////////////////////////////////////////////////////////
|