From 55de28a5bb96c3edfbb2a3b080356acbb44a3cc4 Mon Sep 17 00:00:00 2001 From: Pierre Habouzit Date: Sun, 13 May 2007 18:40:55 +0200 Subject: [PATCH] style. Signed-off-by: Pierre Habouzit --- lib-mx/mbox.c | 83 +++++++++++++++++++++++++-------------------------- lib-mx/mx.c | 6 +--- 2 files changed, 41 insertions(+), 48 deletions(-) diff --git a/lib-mx/mbox.c b/lib-mx/mbox.c index 57f287a..d3c5948 100644 --- a/lib-mx/mbox.c +++ b/lib-mx/mbox.c @@ -25,18 +25,17 @@ /* struct used by mutt_sync_mailbox() to store new offsets */ struct m_update_t { - short valid; - off_t hdr; - off_t body; - long lines; - off_t length; + short valid; + off_t hdr; + off_t body; + long lines; + off_t length; }; - -static int mbox_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr __attribute__ ((unused))) +static int mbox_open_new_message(MESSAGE *msg, CONTEXT *dest, HEADER *hdr) { - msg->fp = dest->fp; - return 0; + msg->fp = dest->fp; + return 0; } /* prototypes */ @@ -47,11 +46,11 @@ static int mbox_reopen_mailbox (CONTEXT*, int*); * excl - exclusive lock? * retry - should retry if unable to lock? */ -int mbox_lock_mailbox (CONTEXT * ctx, int excl, int retry) +int mbox_lock_mailbox(CONTEXT *ctx, int excl, int retry) { int r; - if ((r = mx_lock_file (ctx->path, fileno (ctx->fp), excl, 1, retry)) == 0) + if ((r = mx_lock_file(ctx->path, fileno(ctx->fp), excl, 1, retry)) == 0) ctx->locked = 1; else if (retry && !excl) { ctx->readonly = 1; @@ -227,26 +226,24 @@ static int mbox_parse_mailbox (CONTEXT * ctx) /* open a mbox style mailbox */ static int mbox_open_mailbox (CONTEXT * ctx) { - int rc; + int rc; - if ((ctx->fp = fopen (ctx->path, "r")) == NULL) { - mutt_perror (ctx->path); - return (-1); - } - mutt_block_signals (); - if (mbox_lock_mailbox (ctx, 0, 1) == -1) { - mutt_unblock_signals (); - return (-1); - } + if (!(ctx->fp = fopen(ctx->path, "r"))) { + mutt_perror(ctx->path); + return -1; + } - if (ctx->magic == M_MBOX) - rc = mbox_parse_mailbox (ctx); - else - rc = -1; + mutt_block_signals(); + if (mbox_lock_mailbox(ctx, 0, 1) < 0) { + mutt_unblock_signals(); + return -1; + } - mbox_unlock_mailbox (ctx); - mutt_unblock_signals (); - return (rc); + rc = ctx->magic == M_MBOX ? mbox_parse_mailbox(ctx) : -1; + + mbox_unlock_mailbox(ctx); + mutt_unblock_signals(); + return rc; } /* check to see if the mailbox has changed on disk. @@ -344,24 +341,25 @@ static int _mbox_check_mailbox (CONTEXT * ctx, int *index_hint) return (-1); } -static int mbox_check_mailbox (CONTEXT* ctx, int* index_hint, int lock) { - int rc = 0; +static int mbox_check_mailbox(CONTEXT *ctx, int *index_hint, int lock) +{ + int rc = 0; - if (lock) { - mutt_block_signals (); - if (mbox_lock_mailbox (ctx, 0, 0) == -1) { - mutt_unblock_signals (); - return M_LOCKED; + if (lock) { + mutt_block_signals(); + if (mbox_lock_mailbox(ctx, 0, 0) < 0) { + mutt_unblock_signals(); + return M_LOCKED; + } } - } - rc = _mbox_check_mailbox (ctx, index_hint); + rc = _mbox_check_mailbox(ctx, index_hint); - if (lock) { - mutt_unblock_signals (); - mbox_unlock_mailbox (ctx); - } - return rc; + if (lock) { + mutt_unblock_signals (); + mbox_unlock_mailbox (ctx); + } + return rc; } /* return values: @@ -883,4 +881,3 @@ mx_t const mbox_mx = { mbox_sync_mailbox, mbox_commit_message, }; - diff --git a/lib-mx/mx.c b/lib-mx/mx.c index 6a64115..aa7e3e3 100644 --- a/lib-mx/mx.c +++ b/lib-mx/mx.c @@ -10,8 +10,6 @@ #include -#include - #include #include #include @@ -20,7 +18,6 @@ #include "mutt.h" #include "crypt.h" #include "pattern.h" -#include "buffy.h" #include "mx.h" #include "mbox.h" #include "mh.h" @@ -33,7 +30,6 @@ #include #include - #ifdef USE_NNTP #include #endif @@ -1165,7 +1161,7 @@ int mx_close_message (MESSAGE ** msg) void mx_alloc_memory (CONTEXT * ctx) { - ctx->hdrmax += 25; + ctx->hdrmax += 32; p_realloc(&ctx->hdrs, ctx->hdrmax); p_realloc(&ctx->v2r, ctx->hdrmax); -- 2.20.1