Changeset 3646:2b649fd03f1e for commands.c
- Timestamp:
- 2004-04-12 13:33:33 (5 years ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
commands.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
commands.c
r3549 r3646 942 942 int rv = 0; 943 943 944 h->security |= PGP_TRADITIONAL_CHECKED; 945 944 946 mutt_parse_mime_message (Context, h); 945 947 if ((msg = mx_open_message (Context, h->msgno)) == NULL) … … 960 962 int i; 961 963 int rv = 0; 962 if (h )964 if (h && !(h->security & PGP_TRADITIONAL_CHECKED)) 963 965 rv = _mutt_check_traditional_pgp (h, redraw); 964 966 else 965 967 { 966 968 for (i = 0; i < Context->vcount; i++) 967 if (Context->hdrs[Context->v2r[i]]->tagged )969 if (Context->hdrs[Context->v2r[i]]->tagged && !(h->security & PGP_TRADITIONAL_CHECKED)) 968 970 rv = _mutt_check_traditional_pgp (Context->hdrs[Context->v2r[i]], redraw) 969 971 || rv;
