You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mr...@apache.org on 2014/12/30 18:43:59 UTC

svn commit: r1648557 - /httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c

Author: mrumph
Date: Tue Dec 30 17:43:59 2014
New Revision: 1648557

URL: http://svn.apache.org/r1648557
Log:
Fix some spelling errors in mod_proxy_fcgi comments.

Modified:
    httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c?rev=1648557&r1=1648556&r2=1648557&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_fcgi.c Tue Dec 30 17:43:59 2014
@@ -706,7 +706,7 @@ recv_again:
                         apr_brigade_cleanup(ob);
                     }
 
-                    /* If we didn't read all the data go back and get the
+                    /* If we didn't read all the data, go back and get the
                      * rest of it. */
                     if (clen > readbuflen) {
                         clen -= readbuflen;
@@ -788,7 +788,7 @@ static int fcgi_do_request(apr_pool_t *p
                            char *url, char *server_portstr)
 {
     /* Request IDs are arbitrary numbers that we assign to a
-     * single request. This would allow multiplex/pipelinig of
+     * single request. This would allow multiplex/pipelining of
      * multiple requests to the same FastCGI connection, but
      * we don't support that, and always use a value of '1' to
      * keep things simple. */
@@ -889,7 +889,7 @@ static int proxy_fcgi_handler(request_re
     }
 
     /* This scheme handler does not reuse connections by default, to
-     * avoid tieing up a fastcgi that isn't expecting to work on 
+     * avoid tying up a fastcgi that isn't expecting to work on 
      * parallel requests.  But if the user went out of their way to
      * type the default value of disablereuse=off, we'll allow it.
      */