* * Test the filesystem name through directory_walk and file_walk */
| 4818 | * Test the filesystem name through directory_walk and file_walk |
| 4819 | */ |
| 4820 | static int core_map_to_storage(request_rec *r) |
| 4821 | { |
| 4822 | int access_status; |
| 4823 | |
| 4824 | if ((access_status = ap_directory_walk(r))) { |
| 4825 | return access_status; |
| 4826 | } |
| 4827 | |
| 4828 | if ((access_status = ap_file_walk(r))) { |
| 4829 | return access_status; |
| 4830 | } |
| 4831 | |
| 4832 | return OK; |
| 4833 | } |
| 4834 | |
| 4835 | |
| 4836 | static int do_nothing(request_rec *r) { return OK; } |
nothing calls this directly
no test coverage detected