mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
mime-node: be clearer about decryption
Part 0 of a multipart/encrypted object is GMIME_MULTIPART_ENCRYPTED_VERSION; part 1 is GMIME_MULTIPART_ENCRYPTED_CONTENT. Using the name for what we want describes our intent more clearly than using a magic number in the code. Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
This commit is contained in:
parent
2c1e5c186e
commit
d439e4b5d1
1 changed files with 1 additions and 1 deletions
|
@ -339,7 +339,7 @@ mime_node_child (mime_node_t *parent, int child)
|
|||
return NULL;
|
||||
|
||||
if (GMIME_IS_MULTIPART (parent->part)) {
|
||||
if (child == 1 && parent->decrypted_child)
|
||||
if (child == GMIME_MULTIPART_ENCRYPTED_CONTENT && parent->decrypted_child)
|
||||
sub = parent->decrypted_child;
|
||||
else
|
||||
sub = g_mime_multipart_get_part
|
||||
|
|
Loading…
Reference in a new issue