summaryrefslogtreecommitdiff
path: root/src/reqs.c
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2002-05-24 04:45:32 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2002-05-24 04:45:32 +0000
commit391a408eee5351b4c4714f9edfe358d924ea80bc (patch)
tree9b469da70856e1c1294f94a3feacd5909b060665 /src/reqs.c
parenta34db10d653b296ee9ed3a2c742baf600978cae8 (diff)
downloadtinyproxy-391a408eee5351b4c4714f9edfe358d924ea80bc.tar.gz
tinyproxy-391a408eee5351b4c4714f9edfe358d924ea80bc.zip
Fixed a tonne of spelling mistakes.
Diffstat (limited to '')
-rw-r--r--src/reqs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/reqs.c b/src/reqs.c
index 8d253a3..9d9321f 100644
--- a/src/reqs.c
+++ b/src/reqs.c
@@ -1,4 +1,4 @@
-/* $Id: reqs.c,v 1.74 2002-05-23 18:24:46 rjkaes Exp $
+/* $Id: reqs.c,v 1.75 2002-05-24 04:45:32 rjkaes Exp $
*
* This is where all the work in tinyproxy is actually done. Incoming
* connections have a new thread created for them. The thread then
@@ -276,7 +276,7 @@ establish_http_connection(struct conn_s *connptr, struct request_s *request)
}
/*
- * These two defines are for the SSL tunnelling.
+ * These two defines are for the SSL tunneling.
*/
#define SSL_CONNECTION_RESPONSE "HTTP/1.0 200 Connection established"
#define PROXY_AGENT "Proxy-agent: " PACKAGE "/" VERSION
@@ -309,7 +309,7 @@ process_request(struct conn_s *connptr)
size_t request_len;
- /* NULL out all the fields so free's don't cause segfaults. */
+ /* NULL out all the fields so frees don't cause segfaults. */
request = safecalloc(1, sizeof(struct request_s));
if (!request)
return NULL;
@@ -899,7 +899,7 @@ process_server_headers(struct conn_s *connptr)
goto ERROR_EXIT;
/*
- * Okay, output all the remaining headers to the client.
+ * All right, output all the remaining headers to the client.
*/
iter = hashmap_first(hashofheaders);
if (iter >= 0) {
@@ -990,7 +990,7 @@ relay_connection(struct conn_s *connptr)
return;
} else {
/*
- * Okay, something was actually selected so mark it.
+ * All right, something was actually selected so mark it.
*/
last_access = time(NULL);
}