]> granicus.if.org Git - mutt/commitdiff
Fix #1909.
authorThomas Roessler <roessler@does-not-exist.org>
Sat, 26 Jun 2004 08:45:29 +0000 (08:45 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Sat, 26 Jun 2004 08:45:29 +0000 (08:45 +0000)
commands.c

index 2f2b3b9c439024b164fe6719458a486644f8e514..38abc5ea7013acfca33a634ef3c591b4960f6c91 100644 (file)
@@ -966,7 +966,8 @@ int mutt_check_traditional_pgp (HEADER *h, int *redraw)
   else
   {
     for (i = 0; i < Context->vcount; i++)
-      if (Context->hdrs[Context->v2r[i]]->tagged && !(h->security & PGP_TRADITIONAL_CHECKED))
+      if (Context->hdrs[Context->v2r[i]]->tagged && 
+         !(Context->hdrs[Context->v2r[i]]->security & PGP_TRADITIONAL_CHECKED))
        rv = _mutt_check_traditional_pgp (Context->hdrs[Context->v2r[i]], redraw)
          || rv;
   }