]> granicus.if.org Git - neomutt/commitdiff
rename list functions
authorRichard Russon <rich@flatcap.org>
Thu, 16 Nov 2017 02:22:46 +0000 (02:22 +0000)
committerRichard Russon <rich@flatcap.org>
Thu, 16 Nov 2017 03:39:56 +0000 (03:39 +0000)
mbox.c
mutt/list.c
mutt/list.h

diff --git a/mbox.c b/mbox.c
index e4be2f2c39f1806dcbb9c03f4007b28d1f0b8a1a..17c3830cc73e399fc8809606f61f21f2ed2f486a 100644 (file)
--- a/mbox.c
+++ b/mbox.c
@@ -582,7 +582,7 @@ static int strict_cmp_envelopes(const struct Envelope *e1, const struct Envelope
   {
     if ((mutt_strcmp(e1->message_id, e2->message_id) != 0) ||
         (mutt_strcmp(e1->subject, e2->subject) != 0) ||
-        !strict_cmp_stailq(&e1->references, &e2->references) ||
+        !mutt_list_compare(&e1->references, &e2->references) ||
         !strict_addrcmp(e1->from, e2->from) || !strict_addrcmp(e1->sender, e2->sender) ||
         !strict_addrcmp(e1->reply_to, e2->reply_to) ||
         !strict_addrcmp(e1->to, e2->to) || !strict_addrcmp(e1->cc, e2->cc) ||
index ae4631eff321260b7b955884fad2fcc9c2348999..5885c7b22eef739cee60fc9a77eb869f2612a311 100644 (file)
  * | Function                 | Description
  * | :----------------------- | :-----------------------------------------
  * | mutt_list_clear()        | Free a list, but NOT its strings
+ * | mutt_list_compare()      | Compare two string lists
  * | mutt_list_find()         | Find a string in a List
  * | mutt_list_free()         | Free a List AND its strings
  * | mutt_list_insert_after() | Insert a string after a given ListNode
  * | mutt_list_insert_head()  | Insert a string at the beginning of a List
  * | mutt_list_insert_tail()  | Append a string to the end of a List
  * | mutt_list_match()        | Is the string in the list (see notes)
- * | strict_cmp_stailq()      | Compare two string lists
  */
 
 #include "config.h"
@@ -166,7 +166,7 @@ bool mutt_list_match(const char *s, struct ListHead *h)
 }
 
 /**
- * strict_cmp_stailq - Compare two string lists
+ * mutt_list_compare - Compare two string lists
  * @param ah First string list
  * @param bh Second string list
  * @retval bool True if lists are identical
@@ -174,7 +174,7 @@ bool mutt_list_match(const char *s, struct ListHead *h)
  * To be identical, the lists must both be the same length and contain the same
  * strings.  Two empty lists are identical.
  */
-int strict_cmp_stailq(const struct ListHead *ah, const struct ListHead *bh)
+int mutt_list_compare(const struct ListHead *ah, const struct ListHead *bh)
 {
   struct ListNode *a = STAILQ_FIRST(ah);
   struct ListNode *b = STAILQ_FIRST(bh);
index 54d3f4a9f5f6f2d7105c85d39e13c143745d2f71..2f47116fface44925888ce987d776bda06407ae4 100644 (file)
@@ -46,12 +46,12 @@ struct ListNode
 STAILQ_HEAD(ListHead, ListNode);
 
 void             mutt_list_clear(struct ListHead *h);
+int              mutt_list_compare(const struct ListHead *ah, const struct ListHead *bh);
 struct ListNode *mutt_list_find(struct ListHead *h, const char *data);
 void             mutt_list_free(struct ListHead *h);
 struct ListNode *mutt_list_insert_after(struct ListHead *h, struct ListNode *n, char *s);
 struct ListNode *mutt_list_insert_head(struct ListHead *h, char *s);
 struct ListNode *mutt_list_insert_tail(struct ListHead *h, char *s);
 bool             mutt_list_match(const char *s, struct ListHead *h);
-int              strict_cmp_stailq(const struct ListHead *ah, const struct ListHead *bh);
 
 #endif /* _MUTT_LIST_H */