X-Git-Url: http://git.madism.org/?a=blobdiff_plain;ds=sidebyside;f=muttlib.c;h=73b2e5eb7b86b44d3c974bfb6526e2a78970f9df;hb=93b012884de4ca5e1f2550f767d0b8680b9c0e9f;hp=2b0c41fe5b7b097118abda6225573179f5b471bb;hpb=cfc49a0d8c3ac2c0bd4b217026d0740c55f2e5db;p=apps%2Fmadmutt.git diff --git a/muttlib.c b/muttlib.c index 2b0c41f..73b2e5e 100644 --- a/muttlib.c +++ b/muttlib.c @@ -503,7 +503,7 @@ void mutt_set_parameter (const char *attribute, const char *value, for (q = *p; q; q = q->next) { if (ascii_strcasecmp (attribute, q->attribute) == 0) { - str_replace (&q->value, value); + m_strreplace(&q->value, value); return; } } @@ -829,7 +829,7 @@ int mutt_check_overwrite (const char *attname, const char *path, (_("File is a directory, save under it? [(y)es, (n)o, (a)ll]"), _("yna"))) { case 3: /* all */ - str_replace (directory, fname); + m_strreplace(directory, fname); break; case 1: /* yes */ p_delete(directory); @@ -889,7 +889,7 @@ void mutt_save_path (char *d, size_t dsize, address_t * a) if ((p = strpbrk (d, "%@"))) *p = 0; } - str_tolower (d); + m_strtolower(d); } else *d = 0; @@ -1070,7 +1070,7 @@ void mutt_FormatString (char *dest, /* output buffer */ data, flags); if (lower) - str_tolower (buf); + m_strtolower(buf); if (nodots) { char *p = buf;