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: [EMAIL PROTECTED]
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. [EMAIL PROTECTED] PR#3770
+
*) The "100 Continue" response wasn't being sent after internal
redirects. [Jose KAHAN <[EMAIL PROTECTED]>] 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, "<LI><A HREF=\"", anchor, "\"> ", t2,
- "</A>", pad_scratch + strlen(t2), NULL);
+ "</A>", NULL);
}
ap_rputc('\n', r);
}