Show
Ignore:
Timestamp:
2008-07-10 12:46:05 (5 months ago)
Author:
Aron Griffis <agriffis@…>
Branch:
HEAD
Message:

Remove completely wrong comment regarding in-reply-to and references

...plus fix one other comment and some whitespace.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • headers.c

    r5443 r5450  
    123123  mutt_expand_aliases_env (msg->env); 
    124124 
    125   /* search through the user defined headers added to see if either a  
    126    * fcc: or attach-file: field was specified.   
     125  /* search through the user defined headers added to see if  
     126   * fcc: or attach: or pgp: was specified 
    127127   */ 
    128128 
     
    133133    keep = 1; 
    134134 
    135     /* keep track of whether or not we see the in-reply-to field.  if we did 
    136      * not, remove the references: field later so that we can generate a new 
    137      * message based upon this one. 
    138      */ 
    139135    if (fcc && ascii_strncasecmp ("fcc:", cur->data, 4) == 0) 
    140136    { 
     
    180176      keep = 0; 
    181177    } 
    182  
    183  
    184178    else if ((WithCrypto & APPLICATION_PGP) 
    185              &&ascii_strncasecmp ("pgp:", cur->data, 4) == 0) 
     179             && ascii_strncasecmp ("pgp:", cur->data, 4) == 0) 
    186180    { 
    187181      msg->security = mutt_parse_crypt_hdr (cur->data + 4, 0, APPLICATION_PGP);