X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=pattern.c;h=7d7086897a0610bc8ab3174cae077324b3e93746;hp=d9e8a2ae8cfc7b937bd09f2ae68c9fd4daf25c1e;hb=c5f843d96b3889ba116e4b704e457a00bee63cb9;hpb=74a2265af51ce89bca845adc1d68f273c9933c13 diff --git a/pattern.c b/pattern.c index d9e8a2a..7d70868 100644 --- a/pattern.c +++ b/pattern.c @@ -12,9 +12,9 @@ #endif #include "mutt.h" +#include "mx.h" #include "mapping.h" #include "keymap.h" -#include "mailbox.h" #include "copy.h" #include "lib/mem.h" @@ -766,7 +766,7 @@ pattern_t *mutt_pattern_comp ( /* const */ char *s, int flags, BUFFER * err) return NULL; } /* compile the sub-expression */ - buf = mutt_substrdup (ps.dptr + 1, p); + buf = str_substrdup (ps.dptr + 1, p); if ((tmp = mutt_pattern_comp (buf, flags, err)) == NULL) { FREE (&buf); mutt_pattern_free (&curlist); @@ -1218,7 +1218,7 @@ int mutt_pattern_func (int op, char *prompt) } #endif } - else if (mutt_strncmp (buf, "~A", 2) != 0) { + else if (safe_strncmp (buf, "~A", 2) != 0) { Context->pattern = simple; simple = NULL; /* don't clobber it */ Context->limit_pattern = mutt_pattern_comp (buf, M_FULL_MSG, &err);