diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-12-21 16:16:16 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-12-21 17:17:31 +0000 |
commit | 8ccbe58ae4ee8afa83f3c0e8e52e6a0f57dec015 (patch) | |
tree | ef25f84344cad515f5971c680108a82e83d83db2 /src/libmime | |
parent | b973bb1800bc272f9ebef56d46961ff64e036338 (diff) | |
download | rspamd-8ccbe58ae4ee8afa83f3c0e8e52e6a0f57dec015.tar.gz rspamd-8ccbe58ae4ee8afa83f3c0e8e52e6a0f57dec015.zip |
[Fix] Fix flag shift
Diffstat (limited to 'src/libmime')
-rw-r--r-- | src/libmime/content_type.h | 2 |
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 { |