aboutsummaryrefslogtreecommitdiffstats
path: root/src/libmime
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2020-12-21 16:16:16 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2020-12-21 17:17:31 +0000
commit8ccbe58ae4ee8afa83f3c0e8e52e6a0f57dec015 (patch)
treeef25f84344cad515f5971c680108a82e83d83db2 /src/libmime
parentb973bb1800bc272f9ebef56d46961ff64e036338 (diff)
downloadrspamd-8ccbe58ae4ee8afa83f3c0e8e52e6a0f57dec015.tar.gz
rspamd-8ccbe58ae4ee8afa83f3c0e8e52e6a0f57dec015.zip
[Fix] Fix flag shift
Diffstat (limited to 'src/libmime')
-rw-r--r--src/libmime/content_type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmime/content_type.h b/src/libmime/content_type.h
index 3991e6785..0f7b8e963 100644
--- a/src/libmime/content_type.h
+++ b/src/libmime/content_type.h
@@ -32,7 +32,7 @@ enum rspamd_content_type_flags {
RSPAMD_CONTENT_TYPE_MESSAGE = 1 << 3,
RSPAMD_CONTENT_TYPE_DSN = 1 << 4,
RSPAMD_CONTENT_TYPE_MISSING = 1 << 5,
- RSPAMD_CONTENT_TYPE_ENCRYPTED = 1 << 1,
+ RSPAMD_CONTENT_TYPE_ENCRYPTED = 1 << 6,
};
enum rspamd_content_param_flags {