X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-mx%2Fmbox.c;h=60caf04a31c7811d6d711b60d0852b94a54759b9;hp=81beb5262ec3ffcdb54dace1436d2a85fd2204af;hb=fd97b7b962d97d99e98cd566a34fcdaaeb950bfd;hpb=b56ce930d3bf7721e286bea32ddaea376b90a34c diff --git a/lib-mx/mbox.c b/lib-mx/mbox.c index 81beb52..60caf04 100644 --- a/lib-mx/mbox.c +++ b/lib-mx/mbox.c @@ -546,7 +546,7 @@ static int mbox_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)) return (-1); /* Create a temporary file to write the new version of the mailbox in. */ - fp = m_tempfile(tempfile, _POSIX_PATH_MAX, NONULL(Tempdir), NULL); + fp = m_tempfile(tempfile, _POSIX_PATH_MAX, NONULL(MCore.tmpdir), NULL); if (fp == NULL) { mutt_error _("Could not create temporary file!"); mutt_sleep (5); @@ -718,7 +718,7 @@ static int mbox_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)) char savefile[_POSIX_PATH_MAX]; snprintf(savefile, sizeof (savefile), "%s/mutt.%s-%u", - NONULL(Tempdir), NONULL(Username), (unsigned int)getpid()); + NONULL(MCore.tmpdir), NONULL(MCore.username), (unsigned int)getpid()); rename (tempfile, savefile); mutt_unblock_signals (); mx_fastclose_mailbox (ctx); @@ -838,9 +838,9 @@ static int mbox_reopen_mailbox (CONTEXT * ctx, int *index_hint) /* simulate a close */ if (ctx->id_hash) - hash_destroy (&ctx->id_hash, NULL); + hash_delete (&ctx->id_hash, NULL); if (ctx->subj_hash) - hash_destroy (&ctx->subj_hash, NULL); + hash_delete (&ctx->subj_hash, NULL); mutt_clear_threads (ctx); p_delete(&ctx->v2r); if (ctx->readonly) {