]> granicus.if.org Git - apache/commitdiff
revert r1304688: next time, look at the patch online, maybe..
authorIgor Galić <igalic@apache.org>
Sat, 24 Mar 2012 00:57:27 +0000 (00:57 +0000)
committerIgor Galić <igalic@apache.org>
Sat, 24 Mar 2012 00:57:27 +0000 (00:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1304689 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/filters/mod_request.c

diff --git a/STATUS b/STATUS
index 910f47d0ce6a8e425d5d9021155d3847907b49b2..5f4098adca3c56d63f2394c05b53ce8c38b3b295 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -134,7 +134,7 @@ PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   * mod_request: PR52981 check apr_stroff error correctly to allow KeptBodySize to be used
     Trunk patch: http://svn.apache.org/viewvc?rev=1304641&view=rev
     2.4.x patch: trunk works + CHANGES.
-    +1: covener, igalic
+    +1: covener
     
 PATCHES/ISSUES THAT ARE STALLED
 
index 9cbde0a98815ed562f33b0911d8abfce81a41097..ae59ab6329feb556714fee235befcce430702ab3 100644 (file)
@@ -358,7 +358,7 @@ static const char *set_kept_body_size(cmd_parms *cmd, void *dconf,
     char *end = NULL;
 
     if (APR_SUCCESS != apr_strtoff(&(conf->keep_body), arg, &end, 10)
-            || conf->keep_body < 0 || *end) {
+            || conf->keep_body < 0 || end) {
         return "KeptBodySize must be a valid size in bytes, or zero.";
     }
     conf->keep_body_set = 1;