]> granicus.if.org Git - neomutt/commitdiff
tidy: use DT_MASK to get type
authorRichard Russon <rich@flatcap.org>
Wed, 26 Jul 2017 18:49:25 +0000 (19:49 +0100)
committerRichard Russon <rich@flatcap.org>
Thu, 3 Aug 2017 14:37:34 +0000 (15:37 +0100)
init.c

diff --git a/init.c b/init.c
index 2597da68049764fcddde2bee491e4ee35932f44c..7a0413a4e331c833a9b95f40f422b7d7eb8d2c98 100644 (file)
--- a/init.c
+++ b/init.c
@@ -710,7 +710,7 @@ static void free_opt(struct Option *p)
 {
   struct Regex *pp = NULL;
 
-  switch (p->type & DT_MASK)
+  switch (DTYPE(p->type))
   {
     case DT_ADDR:
       rfc822_free_address((struct Address **) p->data);
@@ -2124,7 +2124,7 @@ static int parse_my_hdr(struct Buffer *buf, struct Buffer *s,
 
 static void set_default(struct Option *p)
 {
-  switch (p->type & DT_MASK)
+  switch (DTYPE(p->type))
   {
     case DT_STR:
       if (!p->init && *((char **) p->data))
@@ -2159,7 +2159,7 @@ static void set_default(struct Option *p)
 
 static void restore_default(struct Option *p)
 {
-  switch (p->type & DT_MASK)
+  switch (DTYPE(p->type))
   {
     case DT_STR:
       mutt_str_replace((char **) p->data, (char *) p->init);