Received: by taz.hyperreal.com (8.7.6/V2.0) id MAA28335; Sat, 23 Nov 1996 12:51:50 -0800 (PST) Received: by taz.hyperreal.com (8.7.6/V2.0) id MAA28327; Sat, 23 Nov 1996 12:51:47 -0800 (PST) Date: Sat, 23 Nov 1996 12:51:47 -0800 (PST) From: Brian Behlendorf Message-Id: <199611232051.MAA28327@taz.hyperreal.com> To: apache-cvs@hyperreal.com Subject: cvs commit: apache/src http_protocol.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@hyperreal.com brian 96/11/23 12:51:47 Modified: src http_protocol.c Log: Reviewed by: Brian Behlendorf, others Submitted by: Rob Hartill Fixed mistaken byte counting in server-side includes. Revision Changes Path 1.76 +2 -1 apache/src/http_protocol.c Index: http_protocol.c =================================================================== RCS file: /export/home/cvs/apache/src/http_protocol.c,v retrieving revision 1.75 retrieving revision 1.76 diff -C3 -r1.75 -r1.76 *** http_protocol.c 1996/11/14 07:35:49 1.75 --- http_protocol.c 1996/11/23 20:51:45 1.76 *************** *** 971,977 **** char *default_type = dir_conf->default_type; if (r->assbackwards) { ! bsetopt(fd, BO_BYTECT, &zero); r->sent_bodyct = 1; return; } --- 971,978 ---- char *default_type = dir_conf->default_type; if (r->assbackwards) { ! if(!r->main) ! bsetopt(fd, BO_BYTECT, &zero); r->sent_bodyct = 1; return; }