From: Vsevolod Stakhov Date: Tue, 31 Aug 2021 13:25:12 +0000 (+0100) Subject: [Fix] Fix http message flag shift X-Git-Tag: 3.1~208 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b17f6c211391d8892e04b402528acf2efc2fa81a;p=thirdparty%2Frspamd.git [Fix] Fix http message flag shift Issue: #3872 --- diff --git a/src/libserver/http/http_connection.h b/src/libserver/http/http_connection.h index b6b199fae5..896f83c20f 100644 --- a/src/libserver/http/http_connection.h +++ b/src/libserver/http/http_connection.h @@ -82,7 +82,7 @@ struct rspamd_storage_shmem { /** * Body has been set for a message */ -#define RSPAMD_HTTP_FLAG_HAS_HOST_HEADER (1 << 6) +#define RSPAMD_HTTP_FLAG_HAS_HOST_HEADER (1 << 7) /** * Options for HTTP connection */