]> granicus.if.org Git - neomutt/commitdiff
always pass char to mutt_str_append_item 764/head
authorMehdi Abaakouk <sileht@sileht.net>
Thu, 21 Sep 2017 17:29:50 +0000 (19:29 +0200)
committerRichard Russon <rich@flatcap.org>
Tue, 3 Oct 2017 12:47:31 +0000 (13:47 +0100)
imap/message.c
mutt_notmuch.c

index c54d6a9efd261f427803e550ef72eb0e889b1c17..65f5dc416657261074635928b0c57d5d367b5475 100644 (file)
@@ -211,10 +211,10 @@ static char *msg_parse_flags(struct ImapHeader *h, char *s)
 
       /* store other system flags as well (mainly \\Draft) */
       if (is_system_keyword)
-        mutt_str_append_item(&hd->flags_system, flag_word, 32);
+        mutt_str_append_item(&hd->flags_system, flag_word, ' ');
       /* store custom flags as well */
       else
-        mutt_str_append_item(&hd->flags_remote, flag_word, 32);
+        mutt_str_append_item(&hd->flags_remote, flag_word, ' ');
 
       *s = ctmp;
     }
index 161a93a3c755ea5c53e3384112192f28a7c69a9e..a9ead1ab5994d472f8b75408597a9f3130a55cba 100644 (file)
@@ -1704,8 +1704,8 @@ int nm_read_entire_thread(struct Context *ctx, struct Header *h)
   id = notmuch_message_get_thread_id(msg);
   if (!id)
     goto done;
-  mutt_str_append_item(&qstr, "thread:", 0);
-  mutt_str_append_item(&qstr, id, 0);
+  mutt_str_append_item(&qstr, "thread:", '\0');
+  mutt_str_append_item(&qstr, id, '\0');
 
   q = notmuch_query_create(db, qstr);
   FREE(&qstr);