X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=mime-node.c;h=d48be4c46695c072197505c9ed7413a64c089af0;hp=02e3df48b48b28feeba83dbab325232e97125063;hb=6499fce3911df2646db67c0f1ff65672324904f0;hpb=3e9857a0b98c04973b9b6ad2da7dc5c3992b3b1c diff --git a/mime-node.c b/mime-node.c index 02e3df48..d48be4c4 100644 --- a/mime-node.c +++ b/mime-node.c @@ -200,7 +200,11 @@ node_decrypt_and_verify (mime_node_t *node, GMimeObject *part, node->decrypt_attempted = true; node->decrypted_child = g_mime_multipart_encrypted_decrypt +#if (GMIME_MAJOR_VERSION < 3) (encrypteddata, cryptoctx, &decrypt_result, &err); +#else + (encrypteddata, GMIME_DECRYPT_NONE, NULL, &decrypt_result, &err); +#endif if (! node->decrypted_child) { fprintf (stderr, "Failed to decrypt part: %s\n", err ? err->message : "no error explanation given");