X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=color.c;h=6266e67e728f130b5fbe6e8dcc1cdf4aced02ed4;hp=9270516b00c16e369cb3cf5a9548bc783da33484;hb=96d53ff49c308769efbf708e1e65819077cb7af6;hpb=b0c07726ac7fde6b8141233679c8a4fe6cff1db4 diff --git a/color.c b/color.c index 9270516..6266e67 100644 --- a/color.c +++ b/color.c @@ -399,7 +399,7 @@ _mutt_parse_uncolor (BUFFER * buf, BUFFER * s, unsigned long data, do { mutt_extract_token (buf, s, 0); - if (!safe_strcmp ("*", buf->data)) { + if (!mutt_strcmp ("*", buf->data)) { for (tmp = ColorIndexList; tmp;) { if (!do_cache) do_cache = 1; @@ -412,7 +412,7 @@ _mutt_parse_uncolor (BUFFER * buf, BUFFER * s, unsigned long data, else { for (last = NULL, tmp = ColorIndexList; tmp; last = tmp, tmp = tmp->next) { - if (!safe_strcmp (buf->data, tmp->pattern)) { + if (!mutt_strcmp (buf->data, tmp->pattern)) { if (!do_cache) do_cache = 1; debug_print (1, ("Freeing pattern \"%s\" from ColorIndexList\n", tmp->pattern)); @@ -454,7 +454,7 @@ add_pattern (COLOR_LINE ** top, const char *s, int sensitive, while (tmp) { if (sensitive) { - if (safe_strcmp (s, tmp->pattern) == 0) + if (mutt_strcmp (s, tmp->pattern) == 0) break; } else {