| 251 | } |
| 252 | |
| 253 | DAV_DECLARE(const char *) dav_get_base_path(request_rec *r) |
| 254 | { |
| 255 | dav_dir_conf *conf = ap_get_module_config(r->per_dir_config, &dav_module); |
| 256 | |
| 257 | return conf && conf->base ? conf->base : NULL; |
| 258 | } |
| 259 | |
| 260 | /* |
| 261 | * Command handler for the DAV directive, which is TAKE1. |
no test coverage detected