diff options
author | James Booth <boothj5@gmail.com> | 2015-08-24 00:13:57 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-08-24 00:13:57 +0100 |
commit | 525876770a22cd0ff1e146f14da61f24a8fa3936 (patch) | |
tree | 5e2b9521abab643d6e13ea53b77bec301bde4954 /tests/unittests/pgp | |
parent | b8b54f91a5fdcb44476b3d356bf143c9a10214ee (diff) | |
download | profani-tty-525876770a22cd0ff1e146f14da61f24a8fa3936.tar.gz |
Removed unused barejid argument from PGP decryption
Diffstat (limited to 'tests/unittests/pgp')
-rw-r--r-- | tests/unittests/pgp/stub_gpg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittests/pgp/stub_gpg.c b/tests/unittests/pgp/stub_gpg.c index 577f7d66..79ff8933 100644 --- a/tests/unittests/pgp/stub_gpg.c +++ b/tests/unittests/pgp/stub_gpg.c @@ -39,7 +39,7 @@ gboolean p_gpg_available(const char * const barejid) { return FALSE; } -char * p_gpg_decrypt(const char * const barejid, const char * const cipher) +char * p_gpg_decrypt(const char * const cipher) { return NULL; } |