From 06c396a370e528db661ba04876dcd9787aed61ad Mon Sep 17 00:00:00 2001 From: Andre Malo Date: Sun, 2 Mar 2003 16:26:45 +0000 Subject: [PATCH] buhuh! use the correct target string and don't forget F=x and V=y in column headers ... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98882 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 3 +++ modules/generators/mod_autoindex.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index ce449f3e8a..12ccd50341 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,9 @@ Changes with Apache 2.1.0-dev [Remove entries to the current 2.0 section below, when backported] + *) mod_autoindex no longer forgets output format and enabled version + sort in linked column headers. [André Malo] + *) Extend mod_negotiation to evaluate the environment variables no-gzip and gzip-only-text/html the same way as mod_deflate does. [André Malo] diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index 4733a5b1c0..f9b32d9bb5 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -2050,7 +2050,7 @@ static int index_directory(request_rec *r, else if (qstring[2] == '1') { autoindex_opts |= VERSION_SORT; } - strcpy(fval, "&V= "); + strcpy(vval, "&V= "); vval[3] = qstring[2]; qstring += qstring[3] ? 4 : 3; } -- 2.40.0