mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Fix typos
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83969 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -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;
|
||||
|
@@ -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.
|
||||
|
@@ -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);
|
||||
}
|
||||
|
@@ -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
|
||||
|
||||
/*
|
||||
|
@@ -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"); */
|
||||
|
@@ -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
|
||||
|
@@ -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)
|
||||
|
Reference in New Issue
Block a user