X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=remailer.c;h=68de8373f599e57edd0688dce6c00839af7834c7;hp=5d68c739208e23236da019fa5861b20a7d5663b8;hb=95fc7c1442ca6109151bbd34716cd9caeb85042a;hpb=df70e07e24add1869bcc9b7af2277d9d0c09a281 diff --git a/remailer.c b/remailer.c index 5d68c73..68de837 100644 --- a/remailer.c +++ b/remailer.c @@ -1,22 +1,10 @@ /* + * Copyright notice from original mutt: * Copyright (C) 1999-2000 Thomas Roessler - * - * This program is free software; you can redistribute it - * and/or modify it under the terms of the GNU General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later - * version. - * - * This program is distributed in the hope that it will be - * useful, but WITHOUT ANY WARRANTY; without even the implied - * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - * PURPOSE. See the GNU General Public License for more - * details. - * - * You should have received a copy of the GNU General Public - * License along with this program; if not, write to the Free - * Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111, USA. + * + * This file is part of mutt-ng, see http://www.muttng.org/. + * It's licensed under the GNU General Public License, + * please see the file GPL in the top level source directory. */ /* @@ -30,11 +18,15 @@ #include "mutt.h" #include "mutt_curses.h" #include "mutt_menu.h" -#include "mutt_regex.h" #include "mapping.h" #include "remailer.h" +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" +#include "lib/rx.h" + #include #include #include @@ -242,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 { @@ -253,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;