X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=mx.c;h=28eb914ccdd7feeb07fe8b0c1bc9e2ee80d1f354;hb=5f6b586de5a46f2359a4fc392fd89f1716d847a3;hp=0574fa57f25a5468472a07d99c218ed7bb5dfd27;hpb=5799804c55ca89031bd4b7d24691ed461412a5f3;p=apps%2Fmadmutt.git diff --git a/mx.c b/mx.c index 0574fa5..28eb914 100644 --- a/mx.c +++ b/mx.c @@ -487,7 +487,7 @@ static int mx_open_mailbox_append (CONTEXT * ctx, int flags) } return (-1); } - fseek (ctx->fp, 0, 2); + fseeko (ctx->fp, 0, 2); break; case M_MH: @@ -1454,7 +1454,11 @@ int mx_rebuild_cache (void) { for (i = 0; i < Incoming->length; i++) { b = (BUFFY*) Incoming->data[i]; magic = mx_get_magic (b->path); - if (magic != M_MAILDIR && magic != M_MH && magic != M_IMAP) + if (magic != M_MAILDIR && magic != M_MH +#ifdef USE_IMAP + && magic != M_IMAP +#endif + ) continue; buf = str_dup (b->path); mutt_pretty_mailbox (buf);