From: Christophe Jaillet Date: Mon, 9 Jun 2014 06:22:01 +0000 (+0000) Subject: r1599852 and r1599799 in trunk X-Git-Tag: 2.4.10~154 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b6d54a2d23090b05fe830c86c024c8d49c6c036;p=apache r1599852 and r1599799 in trunk Fix broken URL in comment git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1601316 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_connection.h b/include/http_connection.h index 2192507d93..f73670b442 100644 --- a/include/http_connection.h +++ b/include/http_connection.h @@ -57,10 +57,10 @@ AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c); * This function is responsible for the following cases: *
  * we now proceed to read from the client until we get EOF, or until
- * MAX_SECS_TO_LINGER has passed.  the reasons for doing this are
+ * MAX_SECS_TO_LINGER has passed.  The reasons for doing this are
  * documented in a draft:
  *
- * http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-connection-00.txt
+ * http://tools.ietf.org/html/draft-ietf-http-connection-00.txt
  *
  * in a nutshell -- if we don't make this effort we risk causing
  * TCP RST packets to be sent which can tear down a connection before
diff --git a/server/connection.c b/server/connection.c
index 6e4495f838..437ae10bac 100644
--- a/server/connection.c
+++ b/server/connection.c
@@ -83,10 +83,10 @@ AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c)
 }
 
 /* we now proceed to read from the client until we get EOF, or until
- * MAX_SECS_TO_LINGER has passed.  the reasons for doing this are
+ * MAX_SECS_TO_LINGER has passed.  The reasons for doing this are
  * documented in a draft:
  *
- * http://www.ics.uci.edu/pub/ietf/http/draft-ietf-http-connection-00.txt
+ * http://tools.ietf.org/html/draft-ietf-http-connection-00.txt
  *
  * in a nutshell -- if we don't make this effort we risk causing
  * TCP RST packets to be sent which can tear down a connection before