From 870229196b495bf175ff776d52ece9662c099c13 Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Wed, 9 Oct 2019 19:43:05 +0200 Subject: [PATCH] Fix long hex encoded masks in maskfiles --- include/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/types.h b/include/types.h index 8dc5263d0..8614d035c 100644 --- a/include/types.h +++ b/include/types.h @@ -1629,7 +1629,7 @@ typedef struct loopback_ctx typedef struct mf { - char mf_buf[0x100]; + char mf_buf[0x400]; int mf_len; } mf_t;