commit 5e78c6c: [Minor] Reserve some more bytes

Vsevolod Stakhov vsevolod at rspamd.com
Mon Oct 31 20:14:03 UTC 2022


Author: Vsevolod Stakhov
Date: 2022-10-31 11:21:33 +0000
URL: https://github.com/rspamd/rspamd/commit/5e78c6ce33c4a42ceef7750eba0e4e225253a32d

[Minor] Reserve some more bytes

---
 src/libserver/rspamd_control.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/libserver/rspamd_control.h b/src/libserver/rspamd_control.h
index dff48927d..c175fcc3f 100644
--- a/src/libserver/rspamd_control.h
+++ b/src/libserver/rspamd_control.h
@@ -53,7 +53,7 @@ enum rspamd_srv_type {
 enum rspamd_log_pipe_type {
 	RSPAMD_LOG_PIPE_SYMBOLS = 0,
 };
-#define CONTROL_PATHLEN MIN(PATH_MAX, PIPE_BUF - sizeof(int) * 2 - sizeof(gint64))
+#define CONTROL_PATHLEN MIN(PATH_MAX, PIPE_BUF - sizeof(int) * 2 - sizeof(gint64) * 2)
 struct rspamd_control_command {
 	enum rspamd_control_type type;
 	union {
@@ -149,8 +149,8 @@ struct rspamd_srv_command {
 			guint pair_num;
 		} spair;
 		struct {
-			gchar cache_dir[CONTROL_PATHLEN];
 			gboolean forced;
+			gchar cache_dir[CONTROL_PATHLEN];
 		} hs_loaded;
 		struct {
 			gchar tag[32];


More information about the Commits mailing list