| 697 | /* conversions */ |
| 698 | |
| 699 | apr_status_t md_json_pass_to(void *value, md_json_t *json, apr_pool_t *p, void *baton) |
| 700 | { |
| 701 | (void)p; |
| 702 | (void)baton; |
| 703 | return md_json_setj(value, json, NULL); |
| 704 | } |
| 705 | |
| 706 | apr_status_t md_json_pass_from(void **pvalue, md_json_t *json, apr_pool_t *p, void *baton) |
| 707 | { |
nothing calls this directly
no test coverage detected