Show
Ignore:
Timestamp:
2000-05-28 13:32:05 (8 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Don't bother the user with messages about PGP signature verification
when there is no PGP stuff about the message.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • commands.c

    r1870 r1873  
    144144 
    145145#ifdef HAVE_PGP 
    146     mutt_message ((cur->pgp & PGPGOODSIGN) ? 
    147                   _("PGP signature successfully verified.") : 
    148                   _("PGP signature could NOT be verified.")); 
     146    if (cur->pgp) 
     147      mutt_message ((cur->pgp & PGPGOODSIGN) ? 
     148                    _("PGP signature successfully verified.") : 
     149                    _("PGP signature could NOT be verified.")); 
    149150#endif 
    150151