1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-06 12:00:11 +02:00

const'ify

This commit is contained in:
B. Petersen 2017-11-26 17:49:16 +01:00
parent e8e30b3bfd
commit 0967491741
2 changed files with 2 additions and 2 deletions

View file

@ -138,7 +138,7 @@ unsigned pgp_update_userid(
pgp_key_t *key, pgp_key_t *key,
const uint8_t *userid, const uint8_t *userid,
const pgp_subpacket_t *sigpkt, const pgp_subpacket_t *sigpkt,
pgp_sig_info_t *siginfo); const pgp_sig_info_t *siginfo);
// pgp_subpacket_t *pgp_add_subpacket(pgp_key_t *, // pgp_subpacket_t *pgp_add_subpacket(pgp_key_t *,
// const pgp_subpacket_t *); // const pgp_subpacket_t *);

View file

@ -1507,7 +1507,7 @@ unsigned pgp_update_userid(
pgp_key_t *key, pgp_key_t *key,
const uint8_t *userid, const uint8_t *userid,
const pgp_subpacket_t *sigpkt, const pgp_subpacket_t *sigpkt,
pgp_sig_info_t *siginfo) const pgp_sig_info_t *siginfo)
{ {
unsigned uididx = 0; unsigned uididx = 0;
unsigned uidsigidx = 0; unsigned uidsigidx = 0;