diff options
author | Justus Winter <[email protected]> | 2017-03-08 10:01:22 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2017-03-08 12:31:10 +0000 |
commit | 2649fdfff5d9e227025956e015b67502fd4962c4 (patch) | |
tree | bb438851a7a66668a8a38ddba389c3f584da594b /g10/tofu.c | |
parent | dirmngr: Do not put a keyserver into a new dirmngr.conf (diff) | |
download | gnupg-2649fdfff5d9e227025956e015b67502fd4962c4.tar.gz gnupg-2649fdfff5d9e227025956e015b67502fd4962c4.zip |
g10: Move more flags into the flag bitfield.
* g10/packet.h (PKT_user_id): Move 'is_primary', 'is_revoked', and
'is_expired' into the flags bitfield, and drop the prefix.
* g10/call-dirmngr.c: Adapt accordingly.
* g10/export.c: Likewise.
* g10/getkey.c: Likewise.
* g10/import.c: Likewise.
* g10/kbnode.c: Likewise.
* g10/keyedit.c: Likewise.
* g10/keylist.c: Likewise.
* g10/keyserver.c: Likewise.
* g10/mainproc.c: Likewise.
* g10/pkclist.c: Likewise.
* g10/pubkey-enc.c: Likewise.
* g10/tofu.c: Likewise.
* g10/trust.c: Likewise.
* g10/trustdb.c: Likewise.
--
This patch has been created by applying the following semantic patch:
@@
expression E;
@@
-E->is_expired
+E->flags.expired
@@
expression E;
@@
-E->is_primary
+E->flags.primary
@@
expression E;
@@
-E->is_revoked
+E->flags.revoked
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'g10/tofu.c')
-rw-r--r-- | g10/tofu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/g10/tofu.c b/g10/tofu.c index 9d6a45762..9d9d8df58 100644 --- a/g10/tofu.c +++ b/g10/tofu.c @@ -2209,9 +2209,9 @@ build_conflict_set (tofu_dbs_t dbs, { found_user_id = 1; - if (user_id2->is_revoked) + if (user_id2->flags.revoked) iter->flags |= BINDING_REVOKED; - if (user_id2->is_expired) + if (user_id2->flags.expired) iter->flags |= BINDING_EXPIRED; } @@ -3486,7 +3486,7 @@ tofu_register_encryption (ctrl_t ctrl, { PKT_user_id *uid = n->pkt->pkt.user_id; - if (uid->is_revoked) + if (uid->flags.revoked) continue; add_to_strlist (&user_id_list, uid->name); @@ -3871,7 +3871,7 @@ tofu_set_policy (ctrl_t ctrl, kbnode_t kb, enum tofu_policy policy) continue; user_id = kb->pkt->pkt.user_id; - if (user_id->is_revoked) + if (user_id->flags.revoked) /* Skip revoked user ids. (Don't skip expired user ids, the expiry can be changed.) */ continue; |