X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=status.c;h=212b007ba6f7eeee4b2d06dd226cdee22353ef82;hp=df1aa0932bab4afed3a7d87dc00360b302683b81;hb=47a98766051a91ceb5e60f7ff5eedc40ea161d61;hpb=74a2265af51ce89bca845adc1d68f273c9933c13 diff --git a/status.c b/status.c index df1aa09..212b007 100644 --- a/status.c +++ b/status.c @@ -17,6 +17,7 @@ #include "sort.h" #include "mapping.h" #include "mx.h" +#include "buffy.h" #include "lib/mem.h" #include "lib/intl.h" @@ -68,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; @@ -240,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]; @@ -278,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':