From 0c7673561b8d6a8cacb0038186fc0ce38fb810ab Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Mon, 11 Oct 1999 22:07:29 +0000 Subject: [PATCH] Fix typos git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83969 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http/http_core.c | 2 +- modules/http/http_protocol.c | 6 +++--- modules/http/http_request.c | 2 +- server/connection.c | 2 +- server/main.c | 4 ++-- server/util_date.c | 2 +- server/util_script.c | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 682b08284f..c8ac4cef6a 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -2110,7 +2110,7 @@ static const char *set_serv_tokens(cmd_parms *cmd, void *dummy, char *arg) 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; diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index cd5e0c81a3..d96fd183b0 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -795,7 +795,7 @@ static int read_request_line(request_rec *r) * 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 @@ static void fixup_vary(request_rec *r) 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 @@ API_EXPORT(long) ap_send_fd_length(ap_file_t *fd, request_rec *r, long length) } -/* 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. diff --git a/modules/http/http_request.c b/modules/http/http_request.c index e4f4f81460..97dc2bb185 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -1260,7 +1260,7 @@ void ap_process_request(request_rec *r) * 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); } diff --git a/server/connection.c b/server/connection.c index 813824f352..16dfe0d6ef 100644 --- a/server/connection.c +++ b/server/connection.c @@ -72,7 +72,7 @@ HOOK_STRUCT( 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 /* diff --git a/server/main.c b/server/main.c index 2409586542..d74559d64e 100644 --- a/server/main.c +++ b/server/main.c @@ -156,7 +156,7 @@ static void show_compile_settings(void) 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 @@ static void usage(process_rec *process) 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"); */ diff --git a/server/util_date.c b/server/util_date.c index 634252ec5d..5fb04c013b 100644 --- a/server/util_date.c +++ b/server/util_date.c @@ -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 diff --git a/server/util_script.c b/server/util_script.c index a71221fe85..67a45fd629 100644 --- a/server/util_script.c +++ b/server/util_script.c @@ -332,7 +332,7 @@ API_EXPORT(int) ap_find_path_info(const char *uri, const char *path_info) } /* 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 @@ API_EXPORT(int) ap_call_exec(request_rec *r, ap_child_info_t *pinfo, char *argv0 } #else - /* TODO: re ap_context_t mplement suexec */ + /* TODO: reimplement suexec */ #if 0 if (ap_suexec_enabled && ((r->server->server_uid != ap_user_id)