| 56 | } |
| 57 | |
| 58 | apr_status_t md_make_worker_accessible(const char *fname, apr_pool_t *p) |
| 59 | { |
| 60 | #ifdef WIN32 |
| 61 | return APR_ENOTIMPL; |
| 62 | #else |
| 63 | return md_try_chown(fname, ap_unixd_config.user_id, -1, p); |
| 64 | #endif |
| 65 | } |
| 66 | |
| 67 | #ifdef WIN32 |
| 68 |
no test coverage detected