X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=remailer.c;h=927be73f022ae60f84c0ca0dce54993d5bc341ff;hb=68d3f8c8e978c7acfcd115d9a3e895cf0fc4f71e;hp=83cb55676de2f32664755e05a78c1fe4dab30f18;hpb=c3e57678c8be193fc137854020f3a90887be97c9;p=apps%2Fmadmutt.git diff --git a/remailer.c b/remailer.c index 83cb556..927be73 100644 --- a/remailer.c +++ b/remailer.c @@ -23,6 +23,10 @@ #include "remailer.h" +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" + #include #include #include @@ -230,7 +234,7 @@ static void mix_screen_coordinates (REMAILER ** type2_list, if (i) { c = - coords[i - 1].c + strlen (type2_list[chain->ch[i - 1]]->shortname) + 2; + coords[i - 1].c + mutt_strlen (type2_list[chain->ch[i - 1]]->shortname) + 2; r = coords[i - 1].r; } else { @@ -241,7 +245,7 @@ static void mix_screen_coordinates (REMAILER ** type2_list, for (; i < chain->cl; i++) { oc = c; - c += strlen (type2_list[chain->ch[i]]->shortname) + 2; + c += mutt_strlen (type2_list[chain->ch[i]]->shortname) + 2; if (c >= COLS) { oc = c = MIX_HOFFSET;