]> granicus.if.org Git - apache/commitdiff
s/\<\(\w\+\)\>\s\+\<\1\>/\1/g
authorYann Ylavic <ylavic@apache.org>
Thu, 9 Jul 2015 18:07:50 +0000 (18:07 +0000)
committerYann Ylavic <ylavic@apache.org>
Thu, 9 Jul 2015 18:07:50 +0000 (18:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1690137 13f79535-47bb-0310-9956-ffa450edef68

15 files changed:
docs/manual/developer/thread_safety.xml
docs/manual/misc/perf-scaling.xml
docs/manual/mod/mod_auth_form.xml
docs/manual/mod/mod_proxy.xml
docs/manual/mod/mod_rewrite.xml
docs/manual/mod/mod_ssl_ct.xml
include/httpd.h
modules/filters/mod_sed.c
modules/generators/mod_autoindex.c
modules/http2/sandbox/httpd/mod_ssl-alpn/ssl_engine_io.c
modules/mappers/mod_negotiation.c
modules/metadata/mod_ident.c
modules/metadata/mod_setenvif.c
modules/proxy/mod_proxy_http.c
modules/ssl/ssl_engine_io.c

index 9ba0bace15c46c942e2c13532fbd9066edf235d2..9aa61188ef95786d7dbdfd4b3453e8e6f57d3e65 100644 (file)
@@ -93,7 +93,7 @@
     time with your delimiter which it then remembers and on each subsequent
     call it returns the next token.  Obviously if multiple threads are
     calling it you will have a problem.  Most systems have a reentrant version
-    of of the function called <code>strtok_r()</code> where you pass in an
+    of the function called <code>strtok_r()</code> where you pass in an
     extra argument which contains an allocated <code>char *</code> which the
     function will use instead of its own static storage for maintaining
     the tokenizing state. If you are using <a href="http://apr.apache.org/"
index 97677957c5f968e9d2d1abdd0e7e47e703d9f692..abf9b7caae17660bfc0a1292fdf39250669aaf2c 100644 (file)
@@ -459,7 +459,7 @@ Swap:       3903784      12540  3891244
                     be done offline so the web server machine is not burdened
                     by processing the log files. Most log analysis packages
                     understand the Common Log Format. The fields in the log
-                    lines are explained in in the following:
+                    lines are explained in the following:
                 </p>
 
 
index 8f2dc1fe24f91f1f9eb95b9913fb7e1571c37094..6330d6b339a3c761e5994fdac424f6101e17fe7f 100644 (file)
@@ -487,7 +487,7 @@ lower level modules</description>
 <usage>
     <p>The <directive module="mod_auth_form">AuthFormMethod</directive> directive specifies
     the name of an HTML field which, if present, will contain the
-    mimetype of the request to to submit should login be successful.</p>
+    mimetype of the request to submit should login be successful.</p>
 
     <p>By populating the form with fields described by
     <directive module="mod_auth_form">AuthFormMethod</directive>,
index 8507a8b82aa828f588e38f5c4365d7739c101a74..b2ab2bfa510562412b9f9b7c62051b3d76126ae9 100644 (file)
@@ -1198,7 +1198,7 @@ ProxyPass "/example" "http://backend.example.com" max=20 ttl=120 retry=300
         like <code>JSESSIONID</code> or <code>PHPSESSIONID</code>,
         and it depends on the backend application server that support sessions.
         If the backend application server uses different name for cookies
-        and url encoded id (like servlet containers) use | to to separate them.
+        and url encoded id (like servlet containers) use | to separate them.
         The first part is for the cookie the second for the path.<br />
         Available in Apache HTTP Server 2.4.4 and later.
     </td></tr>
index a10acce5963c192b00b0ba99e5b2473d141ca9cf..941ac13baca3365d8401678ef0af450d57c2268f 100644 (file)
@@ -631,7 +631,7 @@ AliasMatch "^/myapp" "/opt/myapp-1.2.3"
 
                   <dd>The path component of the requested URI,
                   such as "/index.html".  This notably excludes the
-                  query string which is available as as its own variable
+                  query string which is available as its own variable
                   named <code>QUERY_STRING</code>.</dd>
 
                   <dt><code>THE_REQUEST</code></dt>
index 75f36e781f79671e5c4c50175c7fb532a65f63a4..9c03077f94bb67068b27eb693a245abee968b070 100644 (file)
@@ -398,7 +398,7 @@ refreshed</description>
 
 <usage>
   <p>The <directive>CTSCTStorage</directive> directive sets the name of a
-  directory where SCTs and SCT lists will will be stored.  If <em>directory</em>
+  directory where SCTs and SCT lists will be stored.  If <em>directory</em>
   is not absolute then it is assumed to be relative to <directive module="core">
   DefaultRuntimeDir</directive>.</p>
 
index 7f7300d7f029045a6b590d83f9f9f9845568ee9f..285b76b8215872d89304da8463148abb5f970ea9 100644 (file)
@@ -1850,7 +1850,7 @@ AP_DECLARE(char *) ap_make_full_path(apr_pool_t *a, const char *dir, const char
                    AP_FN_ATTR_NONNULL_ALL;
 
 /**
- * Test if the given path has an an absolute path.
+ * Test if the given path has an absolute path.
  * @param p The pool to allocate from
  * @param dir The directory name
  * @note The converse is not necessarily true, some OS's (Win32/OS2/Netware) have
index 2f0950ec284f2eaa89b51cdea2ddc30f2c4fd556..4a7e5d2feaf25b24efc1405eac03434b13cd7073 100644 (file)
@@ -412,7 +412,7 @@ static apr_status_t sed_request_filter(ap_filter_t *f,
      * the buckets in bbinp and read the data from buckets and invoke
      * sed_eval_buffer on the data. libsed will generate its output using
      * sed_write_output which will add data in ctx->bb. Do it until it have
-     * atleast one bucket bucket in ctx->bb. At the end of data eos bucket
+     * atleast one bucket in ctx->bb. At the end of data eos bucket
      * should be there.
      *
      * Once eos bucket is seen, then invoke sed_finalize_eval to clear the
index 5e86e407287a2d83b0987b83395e8a3bdd2b8276..043a7af7367fb571c9ae512ac441c320ded33375 100644 (file)
@@ -1981,7 +1981,7 @@ static int dsortf(struct ent **e1, struct ent **e2)
         }
     }
 
-    /* The names may be identical in respects other other than
+    /* The names may be identical in respects other than
      * filename case when strnatcmp is used above, so fall back
      * to strcmp on conflicts so that fn1.01.zzz and fn1.1.zzz
      * are also sorted in a deterministic order.
index 168f43f5258e1806ea1b96ef4a5eda2998a7b6e6..791603e29cc4bcdb13e64b2479c850f52137d0ed 100644 (file)
@@ -319,7 +319,7 @@ static int char_buffer_read(char_buffer_t *buffer, char *in, int inl)
     }
 
     if (buffer->length > inl) {
-        /* we have have enough to fill the caller's buffer */
+        /* we have enough to fill the caller's buffer */
         memmove(in, buffer->value, inl);
         buffer->value += inl;
         buffer->length -= inl;
index 536ae8a74a51c9b7303d13e1c150665701fdd636..a68281a8418e6c5347676ca105c84bc9238f0568 100644 (file)
@@ -2890,7 +2890,7 @@ static int do_negotiation(request_rec *r, negotiation_state *neg,
 
             /* Some HTTP/1.0 clients are known to choke when they get
              * a 300 (multiple choices) response without a Location
-             * header.  However the 300 code response we are are about
+             * header.  However the 300 code response we are about
              * to generate will only reach 1.0 clients which support
              * transparent negotiation, and they should be OK. The
              * response should never reach older 1.0 clients, even if
index 06295ef3ab18859044e3c731dd759a97fce5b95f..87e7c2b32e74a70393c3df96b88810a7ed19dd9d 100644 (file)
@@ -298,7 +298,7 @@ static const command_rec ident_cmds[] =
 module AP_MODULE_DECLARE_DATA ident_module;
 
 /*
- * Optional function for the core to to the actual ident request
+ * Optional function for the core to the actual ident request
  */
 static const char *ap_ident_lookup(request_rec *r)
 {
index a62670e0bdcb45a025c01df54893a33911290937..db58b601f3a0f60283d0073f0efa1f3fe942f542 100644 (file)
@@ -41,7 +41,7 @@
  * done. If the value matches the string or regular expression, the
  * environment variables listed as var ... are set. Each var can
  * be in one of three formats: var, which sets the named variable
- * (the value value "1"); var=value, which sets the variable to
+ * (the value "1"); var=value, which sets the variable to
  * the given value; or !var, which unsets the variable is it has
  * been previously set.
  *
index f835d145078a5f473360feb972eea13b10183ca4..41c09dcd73e3018b52d40819e0642682731184cc 100644 (file)
@@ -786,7 +786,7 @@ static int ap_proxy_http_prefetch(apr_pool_t *p, request_rec *r,
 
     /* WE only understand chunked.  Other modules might inject
      * (and therefore, decode) other flavors but we don't know
-     * that the can and have done so unless they they remove
+     * that the can and have done so unless they remove
      * their decoding from the headers_in T-E list.
      * XXX: Make this extensible, but in doing so, presume the
      * encoding has been done by the extensions' handler, and
index 6c346e90f4054b63d76873b98c24a69a93953b7f..9a549eff292aadf37b86327040677bd60ed004df 100644 (file)
@@ -338,7 +338,7 @@ static int char_buffer_read(char_buffer_t *buffer, char *in, int inl)
     }
 
     if (buffer->length > inl) {
-        /* we have have enough to fill the caller's buffer */
+        /* we have enough to fill the caller's buffer */
         memmove(in, buffer->value, inl);
         buffer->value += inl;
         buffer->length -= inl;