| 396 | return APR_SUCCESS; |
| 397 | } |
| 398 | static apr_status_t hm_update_stat(hm_ctx_t *ctx, hm_server_t *s, apr_pool_t *pool) |
| 399 | { |
| 400 | if (slotmem) |
| 401 | return hm_slotmem_update_stat(s, pool); |
| 402 | else |
| 403 | return hm_file_update_stat(ctx, s, pool); |
| 404 | } |
| 405 | |
| 406 | /* Store in a file */ |
| 407 | static apr_status_t hm_file_update_stats(hm_ctx_t *ctx, apr_pool_t *p) |
no test coverage detected