Return-Path: Delivered-To: apmail-httpd-docs-archive@www.apache.org Received: (qmail 21112 invoked from network); 13 Oct 2003 21:17:26 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 13 Oct 2003 21:17:26 -0000 Received: (qmail 43764 invoked by uid 500); 13 Oct 2003 21:16:55 -0000 Delivered-To: apmail-httpd-docs-archive@httpd.apache.org Received: (qmail 43646 invoked by uid 500); 13 Oct 2003 21:16:54 -0000 Mailing-List: contact docs-help@httpd.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: docs@httpd.apache.org Delivered-To: mailing list docs@httpd.apache.org Received: (qmail 43594 invoked by uid 500); 13 Oct 2003 21:16:53 -0000 Delivered-To: apmail-apache-docs@apache.org Delivered-To: apmail-httpd-docs-1.3-cvs@apache.org Date: 13 Oct 2003 21:17:05 -0000 Message-ID: <20031013211705.20932.qmail@minotaur.apache.org> From: erikabele@apache.org To: httpd-docs-1.3-cvs@apache.org Subject: cvs commit: httpd-docs-1.3/htdocs/manual/misc API.html X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N erikabele 2003/10/13 14:17:05 Modified: htdocs/manual/misc API.html Log: Fix a missing bracket. Submitted by: Ward Viaene Revision Changes Path 1.21 +1 -1 httpd-docs-1.3/htdocs/manual/misc/API.html Index: API.html =================================================================== RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/misc/API.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- API.html 19 Mar 2002 18:54:30 -0000 1.20 +++ API.html 13 Oct 2003 21:17:05 -0000 1.21 @@ -491,7 +491,7 @@ if (r->method_number != M_GET) return DECLINED; if (r->finfo.st_mode == 0) return NOT_FOUND; - if ((errstatus = ap_set_content_length (r, r->finfo.st_size)) { + if ((errstatus = ap_set_content_length (r, r->finfo.st_size))) { return errstatus; } --------------------------------------------------------------------- To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org For additional commands, e-mail: docs-help@httpd.apache.org