]> granicus.if.org Git - apache/commitdiff
apxs no longer generates ap_send_http_header() in the example handler
authorDoug MacEachern <dougm@apache.org>
Wed, 20 Jun 2001 01:46:28 +0000 (01:46 +0000)
committerDoug MacEachern <dougm@apache.org>
Wed, 20 Jun 2001 01:46:28 +0000 (01:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89392 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
support/apxs.in

diff --git a/CHANGES b/CHANGES
index 1843c88a4b167d94b736650f5a7f20d5cf83c10c..4dd1824208dbd774eef1f28d75c889386da9bf7c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,7 @@
 Changes with Apache 2.0.19-dev
 
+  *) apxs no longer generates ap_send_http_header() in the example handler
+
   *) Fix an ab problem which could cause a divide-by-zero exception
      with certain invocations (e.g., ab -k -c 6 -n 100 localhost/).
      [Ian Holsman <ianh@cnet.com>]
index 8466386f357247af415c2183244733e033a9314f..3fb508ea2ed00310642096a0ab2945dcfaf6925f 100644 (file)
@@ -636,7 +636,7 @@ static int %NAME%_handler(request_rec *r)
         return DECLINED;
     }
     r->content_type = "text/html";      
-    ap_send_http_header(r);
+
     if (!r->header_only)
         ap_rputs("The sample page from mod_%NAME%.c\n", r);
     return OK;