Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 22705 invoked by uid 6000); 21 Apr 1999 02:01:03 -0000 Received: (qmail 22671 invoked by alias); 21 Apr 1999 02:00:59 -0000 Delivered-To: apache-1.3-cvs@hyperreal.org Received: (qmail 22663 invoked by uid 143); 21 Apr 1999 02:00:58 -0000 Date: 21 Apr 1999 02:00:58 -0000 Message-ID: <19990421020058.22662.qmail@hyperreal.org> From: dgaudet@hyperreal.org To: apache-1.3-cvs@hyperreal.org Subject: cvs commit: apache-1.3/src/modules/standard mod_autoindex.c Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org dgaudet 99/04/20 19:00:57 Modified: src CHANGES src/modules/standard mod_autoindex.c Log: we don't need padding when we're not doing fancyindexing PR: 3770 Submitted by: inkling@firstnethou.com Revision Changes Path 1.1318 +3 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1317 retrieving revision 1.1318 diff -u -r1.1317 -r1.1318 --- CHANGES 1999/04/21 01:29:17 1.1317 +++ CHANGES 1999/04/21 02:00:48 1.1318 @@ -1,5 +1,8 @@ Changes with Apache 1.3.7 + *) "IndexOptions None" generated extra spaces at the end of each + line. [inkling@firstnethou.com] PR#3770 + *) The "100 Continue" response wasn't being sent after internal redirects. [Jose KAHAN ] PR#3910, 3806, 3575 1.103 +1 -1 apache-1.3/src/modules/standard/mod_autoindex.c Index: mod_autoindex.c =================================================================== RCS file: /home/cvs/apache-1.3/src/modules/standard/mod_autoindex.c,v retrieving revision 1.102 retrieving revision 1.103 diff -u -r1.102 -r1.103 --- mod_autoindex.c 1999/04/20 21:53:25 1.102 +++ mod_autoindex.c 1999/04/21 02:00:55 1.103 @@ -1198,7 +1198,7 @@ } else { ap_rvputs(r, "
  • ", t2, - "", pad_scratch + strlen(t2), NULL); + "", NULL); } ap_rputc('\n', r); }