| 394 | } |
| 395 | |
| 396 | static const perms_t *gperms(md_store_fs_t *s_fs, md_store_group_t group) |
| 397 | { |
| 398 | if (group >= (sizeof(s_fs->group_perms)/sizeof(s_fs->group_perms[0])) |
| 399 | || !s_fs->group_perms[group].dir) { |
| 400 | return &s_fs->def_perms; |
| 401 | } |
| 402 | return &s_fs->group_perms[group]; |
| 403 | } |
| 404 | |
| 405 | static apr_status_t fs_get_fname(const char **pfname, |
| 406 | md_store_t *store, md_store_group_t group, |
no outgoing calls
no test coverage detected