X-Git-Url: http://git.madism.org/?a=blobdiff_plain;ds=sidebyside;f=compress.c;h=e97fc8da952d4fc41010914ecf2e3562de18a3d1;hb=330047119d7dc2674918d12253fc24146aefc8d3;hp=6c801e8a117145c1da4e02ca426747ccfb2c0108;hpb=f779db722043d8c6767149a9afef8c10159516f5;p=apps%2Fmadmutt.git diff --git a/compress.c b/compress.c index 6c801e8..e97fc8d 100644 --- a/compress.c +++ b/compress.c @@ -18,6 +18,7 @@ #include "mx.h" #include "mbox.h" +#include "compress.h" typedef struct { const char *close; /* close-hook command */ @@ -33,7 +34,7 @@ char echo_cmd[HUGE_STRING]; * excl - exclusive lock? * retry - should retry if unable to lock? */ -int mbox_lock_compressed (CONTEXT * ctx, FILE * fp, int excl, int retry) +static int mbox_lock_compressed (CONTEXT * ctx, FILE * fp, int excl, int retry) { int r; @@ -47,7 +48,7 @@ int mbox_lock_compressed (CONTEXT * ctx, FILE * fp, int excl, int retry) return (r); } -void mbox_unlock_compressed (CONTEXT * ctx, FILE * fp) +static void mbox_unlock_compressed (CONTEXT * ctx, FILE * fp) { if (ctx->locked) { fflush (fp); @@ -268,14 +269,14 @@ int mutt_open_read_compressed (CONTEXT * ctx) return (0); } -void restore_path (CONTEXT * ctx) +static void restore_path (CONTEXT * ctx) { p_delete(&ctx->path); ctx->path = ctx->realpath; } /* remove the temporary mailbox */ -void remove_file (CONTEXT * ctx) +static void remove_file (CONTEXT * ctx) { if (ctx->magic == M_MBOX || ctx->magic == M_MMDF) remove (ctx->path);