X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mbox.c;fp=mbox.c;h=cd171b39af5f5b7cc42f4951a8fe8b0c3245a950;hp=7207ea73dd2ab399cf1d78b15ff9c007a98972aa;hb=3cb53df6efcb6b137bbab53c16da4eddbc5a1b2b;hpb=df7c0ef298343ef5523ad0be5af9fd629f901738 diff --git a/mbox.c b/mbox.c index 7207ea7..cd171b3 100644 --- a/mbox.c +++ b/mbox.c @@ -25,10 +25,7 @@ #include "sort.h" #include "thread.h" #include "copy.h" - -#ifdef USE_COMPRESSED #include "compress.h" -#endif #include "lib/debug.h" @@ -888,10 +885,8 @@ int mbox_close_mailbox (CONTEXT * ctx) { mx_unlock_file (ctx->path, fileno (ctx->fp), 1); -#ifdef USE_COMPRESSED if (ctx->compressinfo) mutt_slow_close_compressed (ctx); -#endif mutt_unblock_signals (); mx_fastclose_mailbox (ctx); @@ -1113,10 +1108,8 @@ int mbox_is_magic (const char* path, struct stat* st) { return (-1); /* fopen failed */ } -#ifdef USE_COMPRESSED if (magic == -1 && mutt_can_read_compressed (path)) return (M_COMPRESSED); -#endif return (magic); }