]> granicus.if.org Git - mutt/commitdiff
Fix flag confusion. Noted by Vincent Lefevre.
authorThomas Roessler <roessler@does-not-exist.org>
Tue, 2 Nov 2004 13:30:58 +0000 (13:30 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Tue, 2 Nov 2004 13:30:58 +0000 (13:30 +0000)
copy.h

diff --git a/copy.h b/copy.h
index 67568380f04a767e8d39b1a1888e3791971a6f5d..f0a9b86bff832ddd7a8b4e3d8d95585e5abe3e44 100644 (file)
--- a/copy.h
+++ b/copy.h
 #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 */