You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2005/07/06 08:55:24 UTC

svn commit: r209416 - /httpd/httpd/branches/1.3.x/src/main/http_protocol.c

Author: wrowe
Date: Tue Jul  5 23:55:18 2005
New Revision: 209416

URL: http://svn.apache.org/viewcvs?rev=209416&view=rev
Log:

  Fix a fat-fingered typo.

Modified:
    httpd/httpd/branches/1.3.x/src/main/http_protocol.c

Modified: httpd/httpd/branches/1.3.x/src/main/http_protocol.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/1.3.x/src/main/http_protocol.c?rev=209416&r1=209415&r2=209416&view=diff
==============================================================================
--- httpd/httpd/branches/1.3.x/src/main/http_protocol.c (original)
+++ httpd/httpd/branches/1.3.x/src/main/http_protocol.c Tue Jul  5 23:55:18 2005
@@ -2114,7 +2114,7 @@
         }
     }
 
-    if ((r->read_body == REQUEST_NO_BODY) &&
+    if ((r->read_body == REQUEST_NO_BODY)
         && (r->read_length || r->read_chunked || r->remaining)) {
         ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r,
                     "%s with body is not allowed for %s", r->method, r->uri);