X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=mime-node.c;h=c3d5cb9b47595ad2a43606e8faf08b8a0e28283d;hp=d48be4c46695c072197505c9ed7413a64c089af0;hb=b079133ca80a0ca996981d902c35c870f604d42f;hpb=bcd6229d26c26e694b185fb8bf762bad606916c8 diff --git a/mime-node.c b/mime-node.c index d48be4c4..c3d5cb9b 100644 --- a/mime-node.c +++ b/mime-node.c @@ -269,7 +269,12 @@ _mime_node_create (mime_node_t *parent, GMimeObject *part) || (GMIME_IS_MULTIPART_SIGNED (part) && node->ctx->crypto->verify)) { GMimeContentType *content_type = g_mime_object_get_content_type (part); const char *protocol = g_mime_content_type_get_parameter (content_type, "protocol"); - cryptoctx = _notmuch_crypto_get_gmime_context (node->ctx->crypto, protocol); + notmuch_status_t status; + status = _notmuch_crypto_get_gmime_ctx_for_protocol (node->ctx->crypto, + protocol, &cryptoctx); + if (status) /* this is a warning, not an error */ + fprintf (stderr, "Warning: %s (%s).\n", notmuch_status_to_string (status), + protocol ? protocol : "NULL"); if (!cryptoctx) return NULL; }