You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2005/12/07 01:44:14 UTC

svn commit: r354636 - /httpd/httpd/trunk/modules/proxy/mod_proxy_http.c

Author: jerenkrantz
Date: Tue Dec  6 16:44:13 2005
New Revision: 354636

URL: http://svn.apache.org/viewcvs?rev=354636&view=rev
Log:
Add a comment and use proper grammar for another comment.
(No functional changes.)

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

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_http.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/proxy/mod_proxy_http.c?rev=354636&r1=354635&r2=354636&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_http.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_http.c Tue Dec  6 16:44:13 2005
@@ -1480,6 +1480,10 @@
                         break;
                     }
                     else if (rv != APR_SUCCESS) {
+                        /* In this case, we are in real trouble because
+                         * our backend bailed on us, so abort our
+                         * connection to our user too.
+                         */
                         ap_log_cerror(APLOG_MARK, APLOG_ERR, rv, c,
                                       "proxy: error reading response");
                         c->aborted = 1;
@@ -1548,7 +1552,7 @@
         }
     } while (interim_response);
 
-    /* If we our connection with the client is to be aborted, return DONE. */
+    /* If our connection with the client is to be aborted, return DONE. */
     if (c->aborted) {
         return DONE;
     }