| 19 | const struct config_context *, void *); |
| 20 | |
| 21 | static void gpg_interface_lazy_init(void) |
| 22 | { |
| 23 | static int done; |
| 24 | |
| 25 | if (done) |
| 26 | return; |
| 27 | done = 1; |
| 28 | repo_config(the_repository, git_gpg_config, NULL); |
| 29 | } |
| 30 | |
| 31 | static char *configured_signing_key; |
| 32 | static char *ssh_default_key_command; |
no test coverage detected