diff options
author | James Booth <boothj5@gmail.com> | 2015-03-22 01:03:06 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-03-22 01:03:06 +0000 |
commit | 8a5d1fef2930036d34bf02d0b15d0b6239725ffd (patch) | |
tree | 573cf23d9ac350e83727adb58a2971a71f3a1206 /tests | |
parent | fd86615549a76c050dbcb50deaefde199d8216c7 (diff) | |
download | profani-tty-8a5d1fef2930036d34bf02d0b15d0b6239725ffd.tar.gz |
Added Id and fingerprint to pgp key list
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pgp/stub_gpg.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/pgp/stub_gpg.c b/tests/pgp/stub_gpg.c index f0c30b55..29a1d828 100644 --- a/tests/pgp/stub_gpg.c +++ b/tests/pgp/stub_gpg.c @@ -1,5 +1,7 @@ #include <glib.h> +#include "pgp/gpg.h" + void p_gpg_init(void) {} GSList* p_gpg_list_keys(void) @@ -11,3 +13,5 @@ const char* p_gpg_libver(void) { return NULL; } +void p_gpg_free_key(ProfPGPKey *key) {} + |