summaryrefslogtreecommitdiff
path: root/tests/fcgi-responder.c
diff options
context:
space:
mode:
authorMarcus Rückert <darix@opensu.se>2006-10-05 00:09:51 +0000
committerMarcus Rückert <darix@opensu.se>2006-10-05 00:09:51 +0000
commitb8df99f3db00f569f11742a746e7093b45293127 (patch)
tree1d5c3621df10cfc976c2b25fc192b8c2a2d200f9 /tests/fcgi-responder.c
parentbb24041f92343fd61b9cb00e9970a4f1975101a1 (diff)
downloadlighttpd-git-b8df99f3db00f569f11742a746e7093b45293127.tar.gz
- a few more whitespace cleanups
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@1374 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'tests/fcgi-responder.c')
-rw-r--r--tests/fcgi-responder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/fcgi-responder.c b/tests/fcgi-responder.c
index 86b53738..92702956 100644
--- a/tests/fcgi-responder.c
+++ b/tests/fcgi-responder.c
@@ -10,11 +10,11 @@
int main () {
int num_requests = 2;
-
+
while (num_requests > 0 &&
FCGI_Accept() >= 0) {
char* p;
-
+
if (NULL != (p = getenv("QUERY_STRING"))) {
if (0 == strcmp(p, "lf")) {
printf("Status: 200 OK\n\n");
@@ -37,9 +37,9 @@ int main () {
} else {
printf("Status: 500 Internal Foo\r\n\r\n");
}
-
+
printf("test123");
}
-
+
return 0;
}