X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=commands.c;h=88d4a11973b67892c7a5e221a7c97ea3c7fd341f;hp=b6493568b171b37b32865ecfcdb8de0ad5ddc86a;hb=cef32312aa7c285411e817304de98f3873cba6be;hpb=1ee89902de184a640c171ae3285bff6882a791bd diff --git a/commands.c b/commands.c index b649356..88d4a11 100644 --- a/commands.c +++ b/commands.c @@ -19,13 +19,13 @@ #include #include #include +#include #include "mutt.h" #include "alias.h" #include "recvattach.h" #include "sort.h" #include "copy.h" -#include "mx.h" #include "pager.h" #include #include "mutt_idna.h" @@ -35,10 +35,6 @@ #include -#ifdef BUFFY_SIZE -#include "buffy.h" -#endif - /* The folder the user last saved to. Used by ci_save_message() */ static char LastSaveFolder[_POSIX_PATH_MAX] = ""; @@ -659,12 +655,7 @@ int mutt_save_message (HEADER * h, int delete, char prompt[SHORT_STRING], buf[_POSIX_PATH_MAX]; CONTEXT ctx; struct stat st; - -#ifdef BUFFY_SIZE - BUFFY *tmp = NULL; -#else struct utimbuf ut; -#endif *redraw = 0; @@ -778,20 +769,14 @@ int mutt_save_message (HEADER * h, int delete, mx_close_mailbox (&ctx, NULL); if (need_buffy_cleanup) { -#ifdef BUFFY_SIZE - tmp = buffy_find_mailbox (buf); - if (tmp && tmp->new <= 0) - buffy_update_mailbox (tmp); -#else /* fix up the times so buffy won't get confused */ if (st.st_mtime > st.st_atime) { ut.actime = st.st_atime; ut.modtime = time (NULL); utime (buf, &ut); - } - else + } else { utime (buf, NULL); -#endif + } } mutt_clear_error ();