From 69b79b4ff0b382d5551929e9d4f31df0694d712b Mon Sep 17 00:00:00 2001 From: Richard Russon Date: Fri, 17 Aug 2018 14:25:42 +0100 Subject: [PATCH] config: don't reused constants Fixes #1316 --- config/types.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/config/types.h b/config/types.h index b1cf353dc..1f2814ab2 100644 --- a/config/types.h +++ b/config/types.h @@ -41,10 +41,9 @@ #define DTYPE(x) ((x) & 0x1f) /**< Mask for the Data Type */ -#define DT_NOT_EMPTY 0x40 /**< Empty strings are not allowed */ -#define DT_NOT_NEGATIVE 0x80 /**< Negative numbers are not allowed */ - -#define DT_MAILBOX 0x40 /**< DT_PATH: Don't perform path expansions */ +#define DT_NOT_EMPTY 0x40 /**< Empty strings are not allowed */ +#define DT_NOT_NEGATIVE 0x80 /**< Negative numbers are not allowed */ +#define DT_MAILBOX 0x100 /**< DT_PATH: Don't perform path expansions */ /* subtypes for... */ #define DT_SUBTYPE_MASK 0xfe0 /**< Mask for the Data Subtype */ -- 2.40.0