From 60f0237f81288f57a9da8e18f278ab59d60003a0 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Thu, 15 Mar 2018 10:24:35 -0700 Subject: [PATCH] Change mutt_error call in mutt_gpgme_set_sender() to dprint. The message is not an error message, and flies by so quickly it has little informative content. Change it to use dprint instead. Thanks to Darac Marjal for reporting the issue. --- ncrypt/crypt_gpgme.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ncrypt/crypt_gpgme.c b/ncrypt/crypt_gpgme.c index 45456d1dd..f2df76c3e 100644 --- a/ncrypt/crypt_gpgme.c +++ b/ncrypt/crypt_gpgme.c @@ -5113,6 +5113,7 @@ int smime_gpgme_verify_sender(struct Header *h) void mutt_gpgme_set_sender(const char *sender) { + mutt_debug(2, "setting to: %s\n", sender); FREE(¤t_sender); current_sender = mutt_str_strdup(sender); } -- 2.40.0