From: Thomas Roessler Date: Tue, 2 Nov 2004 13:30:58 +0000 (+0000) Subject: Fix flag confusion. Noted by Vincent Lefevre. X-Git-Tag: mutt-1-5-15-rel~61 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5f8f3a7047cc1a9a2c4e2a74a8174577d7c8fe3f;p=mutt Fix flag confusion. Noted by Vincent Lefevre. --- diff --git a/copy.h b/copy.h index 67568380..f0a9b86b 100644 --- a/copy.h +++ b/copy.h @@ -28,12 +28,12 @@ #define M_CM_REPLYING (1<<8) /* replying the message */ -#define M_CM_DECODE_PGP (1<<8) /* used for decoding PGP messages */ -#define M_CM_DECODE_SMIME (1<<9) /* used for decoding S/MIME messages */ +#define M_CM_DECODE_PGP (1<<9) /* used for decoding PGP messages */ +#define M_CM_DECODE_SMIME (1<<10) /* used for decoding S/MIME messages */ #define M_CM_DECODE_CRYPT (M_CM_DECODE_PGP | M_CM_DECODE_SMIME) -#define M_CM_VERIFY (1<<10) /* do signature verification */ +#define M_CM_VERIFY (1<<11) /* do signature verification */