martin 99/10/11 15:07:40
Modified: src/main http_connection.c http_core.c http_main.c
http_protocol.c http_request.c util_date.c
util_script.c
Log:
Fix typos
Revision Changes Path
1.20 +1 -1 apache-2.0/src/main/http_connection.c
Index: http_connection.c
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/main/http_connection.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- http_connection.c 1999/08/31 05:32:56 1.19
+++ http_connection.c 1999/10/11 22:07:21 1.20
@@ -72,7 +72,7 @@
IMPLEMENT_HOOK_VOID(pre_connection,(conn_rec *c),(c))
IMPLEMENT_HOOK_RUN_FIRST(int,process_connection,(conn_rec *c),(c),DECLINED)
-/* TODO: re ap_context_t mplement the lingering close stuff */
+/* TODO: reimplement the lingering close stuff */
#define NO_LINGCLOSE
/*
1.17 +1 -1 apache-2.0/src/main/http_core.c
Index: http_core.c
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/main/http_core.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- http_core.c 1999/10/06 23:04:08 1.16
+++ http_core.c 1999/10/11 22:07:22 1.17
@@ -2110,7 +2110,7 @@
return err;
}
- /* TODO: re ap_context_t mplement the server token stuff. */
+ /* TODO: reimplement the server token stuff. */
#if 0
if (!strcasecmp(arg, "OS")) {
ap_server_tokens = SrvTk_OS;
1.16 +2 -2 apache-2.0/src/main/http_main.c
Index: http_main.c
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/main/http_main.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- http_main.c 1999/10/07 21:48:30 1.15
+++ http_main.c 1999/10/11 22:07:23 1.16
@@ -156,7 +156,7 @@
printf(" -D SHARED_CORE\n");
#endif
-/* This list displays the compiled ap_context_t n default paths: */
+/* This list displays the compiled in default paths: */
#ifdef HTTPD_ROOT
printf(" -D HTTPD_ROOT=\"" HTTPD_ROOT "\"\n");
#endif
@@ -253,7 +253,7 @@
fprintf(stderr, " -v : show version number\n");
fprintf(stderr, " -V : show compile settings\n");
fprintf(stderr, " -h : list available command line
options (this page)\n");
- fprintf(stderr, " -l : list compiled ap_context_t n
modules\n");
+ fprintf(stderr, " -l : list compiled in modules\n");
fprintf(stderr, " -L : list available configuration
directives\n");
/* TODOC: -S has been replaced by '-t -D DUMP_VHOSTS' */
/* fprintf(stderr, " -S : show parsed settings (currently
only vhost settings)\n"); */
1.19 +3 -3 apache-2.0/src/main/http_protocol.c
Index: http_protocol.c
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/main/http_protocol.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- http_protocol.c 1999/10/05 05:14:43 1.18
+++ http_protocol.c 1999/10/11 22:07:25 1.19
@@ -795,7 +795,7 @@
* read(). B_SAFEREAD ensures that the BUFF layer flushes if it will
* have to block during a read.
*/
- /* TODO: re ap_context_t mplement SAFEREAD external to BUFF using a
layer */
+ /* TODO: reimplement SAFEREAD external to BUFF using a layer */
/* //ap_bsetflag(conn->client, B_SAFEREAD, 1); */
ap_bflush(conn->client);
while ((len = getline(l, sizeof(l), conn->client, 0)) <= 0) {
@@ -1533,7 +1533,7 @@
ap_table_do((int (*)(void *, const char *, const char
*))uniq_field_values,
(void *) varies, r->headers_out, "Vary", NULL);
- /* If we found any, replace old Vary fields with unique ap_context_t
fied value */
+ /* If we found any, replace old Vary fields with unique-ified value */
if (varies->nelts > 0) {
ap_table_setn(r->headers_out, "Vary",
@@ -2057,7 +2057,7 @@
}
-/* TODO: re ap_context_t mplement ap_send_fb */
+/* TODO: reimplement ap_send_fb */
#if 0
/*
* Send the body of a response to the client.
1.7 +1 -1 apache-2.0/src/main/http_request.c
Index: http_request.c
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/main/http_request.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- http_request.c 1999/10/04 16:37:53 1.6
+++ http_request.c 1999/10/11 22:07:27 1.7
@@ -1260,7 +1260,7 @@
* this packet, then it'll appear like the link is stalled when really
* it's the application that's stalled.
*/
- /* TODO: re ap_context_t mplement ap_bhalfduplex... not sure how yet */
+ /* TODO: reimplement ap_bhalfduplex... not sure how yet */
/* //ap_bhalfduplex(r->connection->client); */
ap_run_log_transaction(r);
}
1.5 +1 -1 apache-2.0/src/main/util_date.c
Index: util_date.c
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/main/util_date.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- util_date.c 1999/08/31 05:33:02 1.4
+++ util_date.c 1999/10/11 22:07:28 1.5
@@ -57,7 +57,7 @@
/*
* util_date.c: date parsing utility routines
- * These routines are (hopefully) platform ap_context_t ndependent.
+ * These routines are (hopefully) platform independent.
*
* 27 Oct 1996 Roy Fielding
* Extracted (with many modifications) from mod_proxy.c and
1.10 +2 -2 apache-2.0/src/main/util_script.c
Index: util_script.c
===================================================================
RCS file: /export/home/cvs/apache-2.0/src/main/util_script.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- util_script.c 1999/10/04 16:37:55 1.9
+++ util_script.c 1999/10/11 22:07:29 1.10
@@ -332,7 +332,7 @@
}
/* Obtain the Request-URI from the original request-line, returning
- * a new string from the request ap_context_t containing the URI or "".
+ * a new string from the request pool containing the URI or "".
*/
static char *original_uri(request_rec *r)
{
@@ -997,7 +997,7 @@
}
#else
- /* TODO: re ap_context_t mplement suexec */
+ /* TODO: reimplement suexec */
#if 0
if (ap_suexec_enabled
&& ((r->server->server_uid != ap_user_id)