diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-24 04:45:32 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-24 04:45:32 +0000 |
commit | 391a408eee5351b4c4714f9edfe358d924ea80bc (patch) | |
tree | 9b469da70856e1c1294f94a3feacd5909b060665 /src/reqs.c | |
parent | a34db10d653b296ee9ed3a2c742baf600978cae8 (diff) | |
download | tinyproxy-391a408eee5351b4c4714f9edfe358d924ea80bc.tar.gz tinyproxy-391a408eee5351b4c4714f9edfe358d924ea80bc.zip |
Fixed a tonne of spelling mistakes.
Diffstat (limited to '')
-rw-r--r-- | src/reqs.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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); } |