| 428 | } |
| 429 | |
| 430 | static void get_pass(const char **ppass, apr_size_t *plen, |
| 431 | md_store_fs_t *s_fs, md_store_group_t group) |
| 432 | { |
| 433 | if (s_fs->plain_pkey[group]) { |
| 434 | *ppass = NULL; |
| 435 | *plen = 0; |
| 436 | } |
| 437 | else { |
| 438 | *ppass = (const char *)s_fs->key.data; |
| 439 | *plen = s_fs->key.len; |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | static apr_status_t fs_fload(void **pvalue, md_store_fs_t *s_fs, const char *fpath, |
| 444 | md_store_group_t group, md_store_vtype_t vtype, |