summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authordefanor <defanor@uberspace.net>2021-03-10 02:30:15 +0300
committerdefanor <defanor@uberspace.net>2021-03-10 02:30:15 +0300
commit6956f33f4b594804b48511229971fae3421c9642 (patch)
treebf17de6cf92676ed59b147d516015b912dad511f /emacs
parent9185f8eaa387893a4c8ef18963d2ec54b76af61d (diff)
Allow to choose which OpenPGP keys to use for signing
Diffstat (limited to 'emacs')
-rw-r--r--emacs/xml_interface.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/emacs/xml_interface.c b/emacs/xml_interface.c
index 36b1742..2541281 100644
--- a/emacs/xml_interface.c
+++ b/emacs/xml_interface.c
@@ -131,7 +131,8 @@ void req_process (rexmpp_t *s,
}
}
recipients[recipients_num] = NULL;
- char *payload_str = rexmpp_openpgp_payload(s, xmlCopyNode(payload_xml, 1), recipients, mode);
+ char *payload_str =
+ rexmpp_openpgp_payload(s, xmlCopyNode(payload_xml, 1), recipients, NULL, mode);
for (recipients_num = 0; recipients[recipients_num] != NULL; recipients_num++) {
free(recipients[recipients_num]);
}