| 501 | } |
| 502 | |
| 503 | static apr_status_t dispatch(md_store_fs_t *s_fs, md_store_fs_ev_t ev, unsigned int group, |
| 504 | const char *fname, apr_filetype_e ftype, apr_pool_t *p) |
| 505 | { |
| 506 | (void)ev; |
| 507 | if (s_fs->event_cb) { |
| 508 | return s_fs->event_cb(s_fs->event_baton, &s_fs->s, MD_S_FS_EV_CREATED, |
| 509 | group, fname, ftype, p); |
| 510 | } |
| 511 | return APR_SUCCESS; |
| 512 | } |
| 513 | |
| 514 | static apr_status_t mk_group_dir(const char **pdir, md_store_fs_t *s_fs, |
| 515 | md_store_group_t group, const char *name, |
no outgoing calls
no test coverage detected