X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=compress.c;h=b7439f624d5ce356dc10dec79a0234c00b02e1db;hb=41a708d3e526f10bc3aba7c5eac80aaa0b7b6fcd;hp=1ac83553d5ee9821df57b8a5ed6dc302c6f676c3;hpb=df70e07e24add1869bcc9b7af2277d9d0c09a281;p=apps%2Fmadmutt.git diff --git a/compress.c b/compress.c index 1ac8355..b7439f6 100644 --- a/compress.c +++ b/compress.c @@ -1,19 +1,10 @@ /* + * Copyright notice from original mutt: * Copyright (C) 1997 Alain Penders * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * This file is part of mutt-ng, see http://www.muttng.org/. + * It's licensed under the GNU General Public License, + * please see the file GPL in the top level source directory. */ #include "mutt.h" @@ -21,9 +12,13 @@ #ifdef USE_COMPRESSED #include "mx.h" -#include "mailbox.h" +#include "mbox.h" #include "mutt_curses.h" +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" + #include #include #include @@ -134,7 +129,7 @@ static void set_path (CONTEXT * ctx) /* Uncompress to /tmp */ mutt_mktemp (tmppath); - ctx->path = safe_malloc (strlen (tmppath) + 1); + ctx->path = safe_malloc (safe_strlen (tmppath) + 1); strcpy (ctx->path, tmppath); } @@ -482,4 +477,15 @@ int mutt_slow_close_compressed (CONTEXT * ctx) return (0); } +mx_t* compress_reg_mx (void) { + mx_t* fmt = safe_calloc (1, sizeof (mx_t)); + fmt->type = M_COMPRESSED; + fmt->local = 1; + fmt->mx_is_magic = mbox_is_magic; + fmt->mx_check_empty = mbox_check_empty; + fmt->mx_access = access; + fmt->mx_open_mailbox = mutt_open_read_compressed; + return (fmt); +} + #endif /* USE_COMPRESSED */