Searched defs:desc_entry (Results 1 - 1 of 1) sorted by relevance

/httpd/modules/generators/
H A Dmod_autoindex.c301 ai_desc_t *desc_entry; local
304 desc_entry = (ai_desc_t *) apr_array_push(dcfg->desc_list);
305 desc_entry->full_path = (ap_strchr_c(to, '/') == NULL) ? 0 : 1;
306 desc_entry->wildcards = (WILDCARDS_REQUIRED
307 || desc_entry->full_path
309 if (desc_entry->wildcards) {
310 prefix = desc_entry->full_path ? "*/" : "*";
311 desc_entry->pattern = apr_pstrcat(dcfg->desc_list->pool,
315 desc_entry->pattern = apr_pstrdup(dcfg->desc_list->pool, to);
317 desc_entry
[all...]

Completed in 1899 milliseconds