Commit e2dc4d7e authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Fix a small bug that limited the description's width to the filename's width.

Submitted by:	Mladen Turk <mladen.turk@mail.inet.hr>


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90162 13f79535-47bb-0310-9956-ffa450edef68
parent bcb73609
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1628,7 +1628,7 @@ static void output_directories(struct ent **ar, int n,
		        ap_rvputs(r, "</td><td>", 
                                  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);