Useless message with gpgme
authorPierre Habouzit <madcoder@debian.org>
Wed, 28 Nov 2007 14:21:15 +0000 (15:21 +0100)
committerPierre Habouzit <madcoder@debian.org>
Wed, 28 Nov 2007 14:21:40 +0000 (15:21 +0100)
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
commands.c
crypt.cpkg
crypt.h

index 239c7ea..beaac30 100644 (file)
@@ -91,10 +91,6 @@ int mutt_display_message (HEADER * cur)
       }
     }
 
-    if (cmflags & M_CM_VERIFY || cur->security & ENCRYPT) {
-      crypt_invoke_message(cur->security);
-    }
-
     res = _mutt_copy_message (fpout, msg->fp, cur, cur->content, cmflags,
                              (option (OPTWEED) ? (CH_WEED | CH_REORDER) : 0) |
                              CH_DECODE | CH_FROM);
index 8fde1ab..67b37c2 100644 (file)
@@ -3704,16 +3704,6 @@ void crypt_pgp_extract_keys_from_attachment_list(FILE * fp, int tag, BODY * top)
     }
 }
 
-void crypt_invoke_message (int type)
-{
-    if (type & APPLICATION_PGP) {
-        mutt_message _("Invoking PGP...");
-    }
-    else if (type & APPLICATION_SMIME) {
-        mutt_message _("Invoking S/MIME...");
-    }
-}
-
 int mutt_protect (HEADER * msg, char *keylist)
 {
   BODY *pbody = NULL, *tmp_pbody = NULL;
diff --git a/crypt.h b/crypt.h
index 244d90c..0251623 100644 (file)
--- a/crypt.h
+++ b/crypt.h
@@ -78,10 +78,6 @@ void crypt_extract_keys_from_messages (HEADER * h);
    Return the list of keys in KEYLIST. */
 int crypt_get_keys (HEADER * msg, char **keylist);
 
-
-/* Show a message that a backend will be invoked. */
-void crypt_invoke_message (int type);
-
 /* Decrypt a PGP/MIME message. */
 int crypt_pgp_decrypt_mime (FILE * a, FILE ** b, BODY * c, BODY ** d);