X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=buffy.c;h=0db6026e5ef74d432c7e17c98bcb80c8510a753a;hp=105e809ae0777c148783af7fc55b6e9c484db3c5;hb=1ee89902de184a640c171ae3285bff6882a791bd;hpb=b8c71f93b0296f815a6538182343ba67e88c0012 diff --git a/buffy.c b/buffy.c index 105e809..0db6026 100644 --- a/buffy.c +++ b/buffy.c @@ -10,13 +10,12 @@ * please see the file GPL in the top level source directory. */ -#if HAVE_CONFIG_H -# include "config.h" -#endif +#include +#include +#include -#include -#include -#include +#include +#include #include @@ -24,18 +23,6 @@ #include "buffy.h" #include "mx.h" #include "mh.h" -#include "sidebar.h" - -#include "mutt_curses.h" - -#include -#include -#include -#include -#include -#include - -#include static time_t BuffyTime = 0; /* last time we started checking for mail */ @@ -100,13 +87,13 @@ static int test_last_status_new (FILE * f) if (fseeko_last_message (f) == -1) return (0); - hdr = mutt_new_header (); + hdr = header_new(); tmp_envelope = mutt_read_rfc822_header (f, hdr, 0, 0); if (!(hdr->read || hdr->old)) result = 1; - mutt_free_envelope (&tmp_envelope); - mutt_free_header (&hdr); + envelope_delete(&tmp_envelope); + header_delete(&hdr); return result; } @@ -171,7 +158,7 @@ static void buffy_free (BUFFY** p) { } int buffy_lookup (const char* path) { - unsigned int i = 0; + int i = 0; if (list_empty(Incoming) || !path || !*path) return (-1); for (i = 0; i < Incoming->length; i++) { @@ -268,7 +255,7 @@ int buffy_check (int force) struct stat contex_sb; time_t now, last1; CONTEXT *ctx; - unsigned int i = 0; + int i = 0; int local = 0, count = 0; time_t last2; @@ -321,7 +308,7 @@ int buffy_check (int force) * before polling */ if (!Context || !Context->path || (local ? (sb.st_dev != contex_sb.st_dev || sb.st_ino != contex_sb.st_ino) : - !m_strcmp(tmp->path, Context->path))) { + m_strcmp(tmp->path, Context->path))) { switch (tmp->magic) { case M_MBOX: case M_MMDF: @@ -491,7 +478,7 @@ int buffy_list (void) int pos; int first; int have_unnotified = BuffyNotify; - unsigned int i = 0; + int i = 0; pos = 0; first = 1; @@ -555,7 +542,7 @@ int buffy_notify (void) */ void buffy_next (char *s, size_t slen) { - unsigned int l = 0; + int l = 0; int c = 0, i = 0; if (list_empty(Incoming))