X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=status.c;h=212b007ba6f7eeee4b2d06dd226cdee22353ef82;hp=f0b3c3a7ef3caa8da6fbf57f5b12e6adaa7c6775;hb=5fde02cd887a4dfcc5f7f69f8b4cf950bd655219;hpb=df70e07e24add1869bcc9b7af2277d9d0c09a281 diff --git a/status.c b/status.c index f0b3c3a..212b007 100644 --- a/status.c +++ b/status.c @@ -1,19 +1,10 @@ /* + * Copyright notice from original mutt: * Copyright (C) 1996-2000 Michael R. Elkins - * - * 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. */ #if HAVE_CONFIG_H @@ -26,6 +17,11 @@ #include "sort.h" #include "mapping.h" #include "mx.h" +#include "buffy.h" + +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" #include #include @@ -73,9 +69,9 @@ static const char *status_format_str (char *buf, size_t buflen, char op, case 'b': if (!optional) { snprintf (fmt, sizeof (fmt), "%%%sd", prefix); - snprintf (buf, buflen, fmt, mutt_buffy_check (0)); + snprintf (buf, buflen, fmt, buffy_check (0)); } - else if (!mutt_buffy_check (0)) + else if (!buffy_check (0)) optional = 0; break; @@ -245,7 +241,7 @@ static const char *status_format_str (char *buf, size_t buflen, char op, if (!StChars) buf[0] = 0; - else if (i >= mutt_strlen (StChars)) + else if (i >= str_len (StChars)) buf[0] = StChars[0]; else buf[0] = StChars[i]; @@ -283,8 +279,7 @@ static const char *status_format_str (char *buf, size_t buflen, char op, break; case 'v': - snprintf (fmt, sizeof (fmt), "Mutt-ng %%s"); - snprintf (buf, buflen, fmt, MUTT_VERSION); + strncpy (buf, mutt_make_version (0), buflen); break; case 'V':