| 728 | } |
| 729 | |
| 730 | void set_signing_key(const char *key) |
| 731 | { |
| 732 | gpg_interface_lazy_init(); |
| 733 | |
| 734 | free(configured_signing_key); |
| 735 | configured_signing_key = xstrdup(key); |
| 736 | } |
| 737 | |
| 738 | static int git_gpg_config(const char *var, const char *value, |
| 739 | const struct config_context *ctx UNUSED, |
no test coverage detected