X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=compress.c;h=aa453bb75cf07d11a1a64392b96a86641f4f0f92;hp=b9e50ed32da249444597ed544314d3ff6afc78dd;hb=97677c08933e16e25ecb3c12473ef1efdab7962b;hpb=617e7d83d14e14e6a520a48e75437211b16c8834 diff --git a/compress.c b/compress.c index b9e50ed..aa453bb 100644 --- a/compress.c +++ b/compress.c @@ -7,24 +7,26 @@ * please see the file GPL in the top level source directory. */ +#include +#include +#include +#include + #include +#include +#include +#include +#include -#include "mutt.h" +#include +#include -#ifdef USE_COMPRESSED +#include + +#include "mutt.h" #include "mx.h" #include "mbox.h" -#include "mutt_curses.h" - -#include "lib/intl.h" -#include "lib/str.h" -#include "lib/debug.h" - -#include -#include -#include -#include typedef struct { const char *close; /* close-hook command */ @@ -131,7 +133,7 @@ static void set_path (CONTEXT * ctx) /* Uncompress to /tmp */ mutt_mktemp (tmppath); - ctx->path = p_dupstr(tmppath, str_len(tmppath)); + ctx->path = p_dupstr(tmppath, m_strlen(tmppath)); } static int get_size (const char *path) @@ -189,7 +191,7 @@ static char *get_compression_cmd (const char *cmd, const CONTEXT * ctx) mutt_FormatString (expanded, sizeof (expanded), cmd, compresshook_format_str, (unsigned long) ctx, 0); - return str_dup (expanded); + return m_strdup(expanded); } int mutt_check_mailbox_compressed (CONTEXT * ctx) @@ -486,5 +488,3 @@ mx_t* compress_reg_mx (void) { fmt->mx_open_mailbox = mutt_open_read_compressed; return (fmt); } - -#endif /* USE_COMPRESSED */