X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=compress.c;h=6c801e8a117145c1da4e02ca426747ccfb2c0108;hp=bd78ff737be56f5f1fc8b6cf41c650bde2208e92;hb=5fc6c3e42b91af11aa1323f6cfde4d27bbea9ec8;hpb=40fc05e11b8f95a9661e6e410a9e7b7da7824891 diff --git a/compress.c b/compress.c index bd78ff7..6c801e8 100644 --- a/compress.c +++ b/compress.c @@ -7,16 +7,7 @@ * please see the file GPL in the top level source directory. */ -#include -#include -#include -#include - -#include -#include -#include -#include -#include +#include #include #include @@ -155,10 +146,10 @@ static void store_size (CONTEXT * ctx) static const char *compresshook_format_str (char *dest, ssize_t destlen, char op, const char *src, const char *fmt, - const char *ifstring, - const char *elsestring, + const char *ifstring __attribute__ ((unused)), + const char *elsestring __attribute__ ((unused)), unsigned long data, - format_flag flags) + format_flag flags __attribute__ ((unused))) { char tmp[SHORT_STRING]; @@ -233,7 +224,6 @@ int mutt_open_read_compressed (CONTEXT * ctx) cmd = get_compression_cmd (ci->open, ctx); if (cmd == NULL) return (-1); - debug_print (2, ("DecompressCmd: '%s'\n", cmd)); if ((fp = fopen (ctx->realpath, "r")) == NULL) { mutt_perror (ctx->realpath); @@ -321,8 +311,6 @@ int mutt_open_append_compressed (CONTEXT * ctx) /* close a compressed mailbox */ void mutt_fast_close_compressed (CONTEXT * ctx) { - debug_print (2, ("called on '%s'\n", ctx->path)); - if (ctx->compressinfo) { if (ctx->fp) fclose (ctx->fp); @@ -370,8 +358,6 @@ int mutt_sync_compressed (CONTEXT * ctx) return (-1); } - debug_print (2, ("CompressCommand: '%s'\n", cmd)); - endwin (); fflush (stdout); sprintf (echo_cmd, _("echo Compressing %s..."), ctx->realpath); @@ -402,8 +388,6 @@ int mutt_slow_close_compressed (CONTEXT * ctx) char *cmd; COMPRESS_INFO *ci = (COMPRESS_INFO *) ctx->compressinfo; - debug_print (2, ("called on '%s'\n", ctx->path)); - if (!(ctx->append && ((append = get_append_command (ctx->realpath, ctx)) || (append = ci->close)))) { /* if we can not or should not append, * we only have to remove the compressed info, because sync was already @@ -443,8 +427,6 @@ int mutt_slow_close_compressed (CONTEXT * ctx) return (-1); } - debug_print (2, ("CompressCmd: '%s'\n", cmd)); - endwin (); fflush (stdout);