X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=compress.c;h=fd8b97d24e721fe799ee3f9143ad4fd5d484d64c;hp=47f50c5b7c489025110098defbb135861880bc41;hb=d40d2e47d8033cbf917d09c3865179870897e773;hpb=b3cb6ed8d36c550a2e589910ce51bbc8352ff57c diff --git a/compress.c b/compress.c index 47f50c5..fd8b97d 100644 --- a/compress.c +++ b/compress.c @@ -7,25 +7,23 @@ * please see the file GPL in the top level source directory. */ +#include +#include +#include +#include + #include +#include +#include +#include +#include -#include "mutt.h" +#include -#ifdef USE_COMPRESSED +#include "mutt.h" #include "mx.h" #include "mbox.h" -#include "mutt_curses.h" - -#include "lib/mem.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 */ @@ -132,7 +130,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) @@ -190,7 +188,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) @@ -487,5 +485,3 @@ mx_t* compress_reg_mx (void) { fmt->mx_open_mailbox = mutt_open_read_compressed; return (fmt); } - -#endif /* USE_COMPRESSED */