summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2015-01-22 18:22:28 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2015-01-22 18:22:28 +0000
commit3fb56461cf8899a5b8af24365768988411a0a639 (patch)
treee36bc1379ca9bca5222db71c66bfe23f284707bb
parent93c9692301257e70c7a0b5821498fb68672f6b4c (diff)
Clean up includes, while here fix a white space which lead to a false
positive during grep'ing. OK reyk
-rw-r--r--usr.sbin/slowcgi/slowcgi.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/slowcgi/slowcgi.c b/usr.sbin/slowcgi/slowcgi.c
index 069b1e96dd4..4fc250154e1 100644
--- a/usr.sbin/slowcgi/slowcgi.c
+++ b/usr.sbin/slowcgi/slowcgi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: slowcgi.c,v 1.43 2015/01/19 21:18:47 guenther Exp $ */
+/* $OpenBSD: slowcgi.c,v 1.44 2015/01/22 18:22:27 florian Exp $ */
/*
* Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
* Copyright (c) 2013 Florian Obser <florian@openbsd.org>
@@ -20,19 +20,19 @@
#include <sys/ioctl.h>
#include <sys/queue.h>
#include <sys/socket.h>
-#include <sys/socketvar.h>
#include <sys/stat.h>
+#include <sys/time.h>
#include <sys/un.h>
#include <sys/wait.h>
+#include <arpa/inet.h>
#include <err.h>
#include <fcntl.h>
-#include <ctype.h>
#include <errno.h>
#include <event.h>
-#include <netdb.h>
#include <limits.h>
#include <pwd.h>
#include <signal.h>
+#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -510,7 +510,7 @@ slowcgi_sig_handler(int sig, short event, void *arg)
switch (sig) {
case SIGCHLD:
- while((pid = waitpid(WAIT_ANY, &status, WNOHANG)) > 0) {
+ while ((pid = waitpid(WAIT_ANY, &status, WNOHANG)) > 0) {
c = NULL;
SLIST_FOREACH(ncs, &p->requests, entry)
if (ncs->request->script_pid == pid) {