about summary refs log tree commit diff stats
path: root/src/pgp
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-08-24 22:27:15 +0100
committerJames Booth <boothj5@gmail.com>2015-08-24 22:27:15 +0100
commitd6ff72cf48bddf64e0e7e4b77929d0996770b2e6 (patch)
treeceb37cbf58e4fc08a12a3d9bca6173959940aa30 /src/pgp
parent525876770a22cd0ff1e146f14da61f24a8fa3936 (diff)
downloadprofani-tty-d6ff72cf48bddf64e0e7e4b77929d0996770b2e6.tar.gz
Show public keys in PGP key list
Diffstat (limited to 'src/pgp')
-rw-r--r--src/pgp/gpg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pgp/gpg.c b/src/pgp/gpg.c
index 2b61b8c1..6edab8d1 100644
--- a/src/pgp/gpg.c
+++ b/src/pgp/gpg.c
@@ -229,7 +229,7 @@ p_gpg_list_keys(void)
         return NULL;
     }
 
-    error = gpgme_op_keylist_start(ctx, NULL, 1);
+    error = gpgme_op_keylist_start(ctx, NULL, 0);
     if (error == GPG_ERR_NO_ERROR) {
         while (!error) {
             gpgme_key_t key;