From 5f8f3a7047cc1a9a2c4e2a74a8174577d7c8fe3f Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Tue, 2 Nov 2004 13:30:58 +0000 Subject: [PATCH] Fix flag confusion. Noted by Vincent Lefevre. --- copy.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 */ -- 2.40.0