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

/httpd/modules/http/
H A Dbyterange_filter.c139 char *dash; local
151 if (!(dash = strchr(cur, '-'))) {
155 if (dash == cur) {
157 if (apr_strtoff(&number, dash+1, &errp, 10) || *errp) {
167 *dash++ = '\0';
172 if (*dash) {
173 if (apr_strtoff(&number, dash, &errp, 10) || *errp) {
/httpd/modules/dav/main/
H A Dmod_dav.c775 char *dash; local
785 || (dash = ap_strchr(range, '-')) == NULL
791 *dash++ = *slash++ = '\0';
798 if (apr_strtoff(range_end, dash, &errp, 10)

Completed in 23 milliseconds