From aee905a061722fe772af6ac711052726638772e5 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Tue, 14 Aug 2001 19:46:21 +0000 Subject: [PATCH] Fix a small bug that limited the description's width to the filename's width. Submitted by: Mladen Turk git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90162 13f79535-47bb-0310-9956-ffa450edef68 --- modules/generators/mod_autoindex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index 407ce555e7..f48ae3285c 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -1628,7 +1628,7 @@ static void output_directories(struct ent **ar, int n, ap_rvputs(r, "", terminate_description(d, ar[x]->desc, autoindex_opts, - name_width), NULL); + desc_width), NULL); } } else @@ -1700,7 +1700,7 @@ static void output_directories(struct ent **ar, int n, if (ar[x]->desc) { ap_rputs(terminate_description(d, ar[x]->desc, autoindex_opts, - name_width), r); + desc_width), r); } } ap_rputc('\n', r); -- 2.50.1