]> granicus.if.org Git - apache/commitdiff
Add a comment and use proper grammar for another comment.
authorJustin Erenkrantz <jerenkrantz@apache.org>
Wed, 7 Dec 2005 00:44:13 +0000 (00:44 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Wed, 7 Dec 2005 00:44:13 +0000 (00:44 +0000)
(No functional changes.)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@354636 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy_http.c

index 1be92b83658a64641b054ce571571aa0fe5de140..250b7601d02823afab839403951d2620929a63b0 100644 (file)
@@ -1480,6 +1480,10 @@ apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r,
                         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 @@ apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r,
         }
     } 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;
     }