1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Fixed PGP error message

This commit is contained in:
James Booth 2015-12-19 22:55:33 +00:00
parent 88fd2a25ee
commit e1f674eca3

View File

@ -109,7 +109,7 @@ sv_ev_roster_received(void)
if (account && account->pgp_keyid) {
char *err_str = NULL;
if (!p_gpg_valid_key(account->pgp_keyid, &err_str)) {
cons_show_error("Invalid PGP key ID specified: %s, %s", account->pgp_keyid, err_str);
cons_show_error("Invalid PGP key ID specified: %s, %s", account->pgp_keyid, err_str);
}
free(err_str);
}