]> granicus.if.org Git - neomutt/commitdiff
Fix typos in 'color compose'
authorRichard Russon <rich@flatcap.org>
Mon, 5 Jun 2017 12:50:50 +0000 (13:50 +0100)
committerRichard Russon <rich@flatcap.org>
Mon, 5 Jun 2017 12:58:30 +0000 (13:58 +0100)
compose.c

index d0df23abc07145492cac14ff36cccf271843bfff..c2ca782b97f8dc4e163d36eca520bd326074ba4f 100644 (file)
--- a/compose.c
+++ b/compose.c
@@ -170,13 +170,13 @@ static void redraw_crypt_lines(struct Header *msg)
   }
   else if (msg->security & SIGN)
   {
-    SETCOLOR(MT_COLOR_COMPOSE_SECURITY_ENCRYPT);
+    SETCOLOR(MT_COLOR_COMPOSE_SECURITY_SIGN);
     addstr(_("Sign"));
   }
   else
   {
     /* L10N: This refers to the encryption of the email, e.g. "Security: None" */
-    SETCOLOR(MT_COLOR_COMPOSE_SECURITY_ENCRYPT);
+    SETCOLOR(MT_COLOR_COMPOSE_SECURITY_NONE);
     addstr(_("None"));
   }
   NORMAL_COLOR;