From: Richard Russon Date: Thu, 21 Dec 2017 02:20:41 +0000 (+0000) Subject: fix sensitive flag for config variables X-Git-Tag: neomutt-20180223~66^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=218a1cef730c7f14c54c38b5d48e116c34bdbcad;p=neomutt fix sensitive flag for config variables --- 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)