]> granicus.if.org Git - neomutt/commitdiff
fix sensitive flag for config variables
authorRichard Russon <rich@flatcap.org>
Thu, 21 Dec 2017 02:20:41 +0000 (02:20 +0000)
committerRichard Russon <rich@flatcap.org>
Thu, 28 Dec 2017 13:25:49 +0000 (13:25 +0000)
init.h

diff --git a/init.h b/init.h
index 89eac81fbea47e2e1c67ce45cbbef44ad71a4a8b..e2f39270f9bc9a24e0281f74bdc0ba9b1bd016b4 100644 (file)
--- 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)