From d008bbe604f25576671b5ba1be995207249147ca Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Tue, 26 Jan 2010 16:19:51 +0000 Subject: Use correct comment style. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@903302 13f79535-47bb-0310-9956-ffa450edef68 --- modules/generators/mod_autoindex.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'modules/generators') diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index b9151693bd..e1cde2faf6 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -1100,7 +1100,7 @@ static void emit_head(request_rec *r, char *header_fname, int suppress_amble, if (emit_H1) { if (d->style_sheet != NULL) { - // Insert style id if stylesheet used + /* Insert style id if stylesheet used */ ap_rvputs(r, "

Index of ", title, "

\n", NULL); } else { ap_rvputs(r, "

Index of ", title, "

\n", NULL); @@ -1280,8 +1280,8 @@ static struct ent *make_parent_entry(apr_int32_t autoindex_opts, } if (!(p->alt = find_default_alt(d, testpath))) { if (!(p->alt = find_default_alt(d, "^^DIRECTORY^^"))) { - // Special alt text for parent dir to distinguish it from other directories - // this is essential when trying to style this dir entry via AddAltClass + /* Special alt text for parent dir to distinguish it from other directories + this is essential when trying to style this dir entry via AddAltClass */ p->alt = "PARENTDIR"; } } @@ -1547,7 +1547,7 @@ static void output_directories(struct ent **ar, int n, if (autoindex_opts & TABLE_INDEXING) { int cols = 1; if (d->style_sheet != NULL) { - // Emit table with style id + /* Emit table with style id */ ap_rputs(" \n ", r); } else { ap_rputs("
\n ", r); @@ -1684,12 +1684,12 @@ static void output_directories(struct ent **ar, int n, /* Even/Odd rows for IndexStyleSheet */ if (d->style_sheet != NULL) { if (ar[x]->alt && (autoindex_opts & ADDALTCLASS)) { - // Include alt text in class name, distinguish between odd and even rows + /* Include alt text in class name, distinguish between odd and even rows */ char *altclass = apr_pstrdup(scratch, ar[x]->alt); ap_str_tolower(altclass); ap_rvputs(r, " ", NULL); } else { - // Distinguish between odd and even rows + /* Distinguish between odd and even rows */ ap_rvputs(r, " ", NULL); } } else { -- cgit v1.2.3