From: William A. Rowe Jr Date: Sat, 28 Jul 2001 01:33:10 +0000 (+0000) Subject: Minor quibble,
  • can and should be a balanced tag X-Git-Tag: 2.0.23~171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce46d6ee9ed94697bb987cb5b44e53910a1e51ad;p=thirdparty%2Fapache%2Fhttpd.git Minor quibble,
  • can and should be a balanced tag git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89754 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index 2f6e88bfc83..bb22ace6095 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -1453,8 +1453,8 @@ static void output_directories(struct ent **ar, int n, } } else { - ap_rvputs(r, "
  • ", t2, - "", NULL); + ap_rvputs(r, "
  • ", t2, + "
  • ", NULL); } ap_rputc('\n', r); } diff --git a/modules/mappers/mod_negotiation.c b/modules/mappers/mod_negotiation.c index ee3818b75db..a54e2596683 100644 --- a/modules/mappers/mod_negotiation.c +++ b/modules/mappers/mod_negotiation.c @@ -2261,7 +2261,7 @@ static char *make_variant_list(request_rec *r, negotiation_state *neg) * Note that if you change the number of substrings pushed, you also * need to change the calculation of max_vlist_array above. */ - *((const char **) apr_array_push(arr)) = "
  • "; *((const char **) apr_array_push(arr)) = filename; @@ -2285,7 +2285,7 @@ static char *make_variant_list(request_rec *r, negotiation_state *neg) *((const char **) apr_array_push(arr)) = ", encoding "; *((const char **) apr_array_push(arr)) = variant->content_encoding; } - *((const char **) apr_array_push(arr)) = "\n"; + *((const char **) apr_array_push(arr)) = "
  • \n"; } *((const char **) apr_array_push(arr)) = "\n";