]> granicus.if.org Git - apache/commitdiff
Backport r1690120.
authorChristophe Jaillet <jailletc36@apache.org>
Sat, 11 Jul 2015 05:21:39 +0000 (05:21 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sat, 11 Jul 2015 05:21:39 +0000 (05:21 +0000)
Doc and comment fix only

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1690349 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_ssl.xml
modules/aaa/mod_authn_core.c
modules/aaa/mod_authz_core.c
modules/cache/cache_util.h
modules/filters/mod_charset_lite.c
modules/filters/mod_ext_filter.c
modules/filters/mod_sed.c
modules/ssl/ssl_engine_kernel.c
server/core.c
server/mpm/netware/mpm_netware.c

index eb34522933448d97db56c5b9d4a006f2e30faf11..f3619e1e3869863f9948b8ac8e28c79f8d0ac32b 100644 (file)
@@ -852,7 +852,7 @@ algorithm type.
 </p>
 
 <p>
-Finally the the end-entity certificate's private key can also be
+Finally the end-entity certificate's private key can also be
 added to the certificate file instead of using a separate
 <directive module="mod_ssl">SSLCertificateKeyFile</directive>
 directive. This practice is highly discouraged. If it is used,
index 1f1163ec086280e63c03f22e9c032edcd26f6251..7af126558724bc4298370baa29f7bc5d54551efe 100644 (file)
@@ -108,7 +108,7 @@ static authn_status authn_alias_check_password(request_rec *r, const char *user,
                                               const char *password)
 {
     /* Look up the provider alias in the alias list */
-    /* Get the the dir_config and call ap_Merge_per_dir_configs() */
+    /* Get the dir_config and call ap_Merge_per_dir_configs() */
     /* Call the real provider->check_password() function */
     /* return the result of the above function call */
 
@@ -140,7 +140,7 @@ static authn_status authn_alias_get_realm_hash(request_rec *r, const char *user,
                                                const char *realm, char **rethash)
 {
     /* Look up the provider alias in the alias list */
-    /* Get the the dir_config and call ap_Merge_per_dir_configs() */
+    /* Get the dir_config and call ap_Merge_per_dir_configs() */
     /* Call the real provider->get_realm_hash() function */
     /* return the result of the above function call */
 
index d70e6965cff0d0399cad0f631a2f1da665586fdb..b669c8c8db6b65c42de62bb7a0979a45d9208e2d 100644 (file)
@@ -196,7 +196,7 @@ static authz_status authz_alias_check_authorization(request_rec *r,
     authz_status ret = AUTHZ_DENIED;
 
     /* Look up the provider alias in the alias list.
-     * Get the the dir_config and call ap_Merge_per_dir_configs()
+     * Get the dir_config and call ap_Merge_per_dir_configs()
      * Call the real provider->check_authorization() function
      * return the result of the above function call
      */
index 5f296bc7165513348234de307c882b2366036a86..59436c428d4533bc088d8b35258c669bbc3c54e4 100644 (file)
@@ -264,7 +264,7 @@ int cache_check_freshness(cache_handle_t *h, cache_request_rec *cache,
  * Try obtain a cache wide lock on the given cache key.
  *
  * If we return APR_SUCCESS, we obtained the lock, and we are clear to
- * proceed to the backend. If we return APR_EEXISTS, the the lock is
+ * proceed to the backend. If we return APR_EEXISTS, then the lock is
  * already locked, someone else has gone to refresh the backend data
  * already, so we must return stale data with a warning in the mean
  * time. If we return anything else, then something has gone pear
index e05517b8515ed2b88ff60fdf0235c72319b4e1f0..d991c12bbd9f7e5a5ae59d7dbeca35336ee9bfd3 100644 (file)
@@ -1026,7 +1026,7 @@ static apr_status_t xlate_in_filter(ap_filter_t *f, apr_bucket_brigade *bb,
              * Content-Length can't be unset here because that would break
              * being able to read the request body.
              * Processing of chunked request bodies is not impacted by this
-             * filter since the the length was not declared anyway.
+             * filter since the length was not declared anyway.
              */
             ap_log_rerror(APLOG_MARK, APLOG_TRACE1, 0, f->r,
                           "Request body length may change, resulting in "
index 4f97acae07688373ec1caed4fb5e03ab782c64d1..9f183f69bca26f307059039a1cebc4a1d6402ea6 100644 (file)
@@ -635,7 +635,7 @@ static apr_status_t init_filter_instance(ap_filter_t *f)
 /* drain_available_output():
  *
  * if any data is available from the filter, read it and append it
- * to the the bucket brigade
+ * to the bucket brigade
  */
 static apr_status_t drain_available_output(ap_filter_t *f,
                                            apr_bucket_brigade *bb)
index dd776c48786cc8ec32a04f150d69c155114c0c64..410a5436cdfb9ec07ab16b1eb2e94b9f31d92176 100644 (file)
@@ -312,7 +312,7 @@ static apr_status_t sed_response_filter(ap_filter_t *f,
      * evaluation is allocated on request's pool so it will be cleared once
      * request is over.
      *
-     * If flush bucket is found then append the the flush bucket to ctx->bb
+     * If flush bucket is found then append the flush bucket to ctx->bb
      * and pass it to next filter. There may be some data which will still be
      * in sed's internal buffer which can't be flushed until new line
      * character is arrived.
index 5642009ccb933b4ca8cf112b215e11aeaa547e86..d0f9489a87b22b616f900c3f8eca7e6e3711e0c7 100644 (file)
@@ -1749,7 +1749,7 @@ SSL_SESSION *ssl_callback_GetSessionCacheEntry(SSL *ssl,
 
 /*
  *  This callback function is executed by OpenSSL whenever a
- *  SSL_SESSION is removed from the the internal OpenSSL cache.
+ *  SSL_SESSION is removed from the internal OpenSSL cache.
  *  We use this to remove the SSL_SESSION in the inter-process
  *  disk-cache, too.
  */
index a3681719d0f3ad0600e3b869146ed9d63bbbd521..802d8fdcdb8e73cd8b7390d738eb2d7f9386705c 100644 (file)
@@ -1097,7 +1097,7 @@ AP_DECLARE(apr_off_t) ap_get_limit_req_body(const request_rec *r)
 /*****************************************************************
  *
  * Commands... this module handles almost all of the NCSA httpd.conf
- * commands, but most of the old srm.conf is in the the modules.
+ * commands, but most of the old srm.conf is in the modules.
  */
 
 
index ecd76c7cbf6d010cf83bf347c3f57fbf48a87694..857207273ca8e57231405e76621c697a450c9fd4 100644 (file)
@@ -1202,7 +1202,7 @@ static int CommandLineInterpreter(scr_t screenID, const char *commandLine)
         ActivateScreen (getscreenhandle());
 
         /* If an instance id was not given but the nlm is loaded in
-            protected space, then the the command belongs to the
+            protected space, then the command belongs to the
             OS address space instance to pass it on. */
         pID = strstr (szcommandLine, "-p");
         if ((pID == NULL) && nlmisloadedprotected())