| 802 | } |
| 803 | |
| 804 | static char *find_item_by_request(request_rec *r, apr_array_header_t *list, int path_only) |
| 805 | { |
| 806 | return find_item(ap_field_noparam(r->pool, r->content_type), |
| 807 | r->content_encoding, r->filename, list, path_only); |
| 808 | } |
| 809 | |
| 810 | #define find_icon(d,p,t) find_item_by_request(p,d->icon_list,t) |
| 811 | #define find_alt(d,p,t) find_item_by_request(p,d->alt_list,t) |
nothing calls this directly
no test coverage detected