From 218a1cef730c7f14c54c38b5d48e116c34bdbcad Mon Sep 17 00:00:00 2001 From: Richard Russon Date: Thu, 21 Dec 2017 02:20:41 +0000 Subject: [PATCH] fix sensitive flag for config variables --- init.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.h b/init.h index 89eac81fb..e2f39270f 100644 --- a/init.h +++ b/init.h @@ -71,7 +71,7 @@ struct Buffer; #define R_RESORT_BOTH (R_RESORT | R_RESORT_SUB) /* general flags, to be OR'd with the R_ flags above (so keep shifting..) */ -#define F_SENSITIVE (1 << 9) +#define F_SENSITIVE (1 << 10) #define IS_SENSITIVE(x) (((x).flags & F_SENSITIVE) == F_SENSITIVE) -- 2.50.1