X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-mx%2Fmbox.c;h=26b558051e79499031c1374f9f4e0fe5ce145094;hp=79658fa16dc1c9c5c23e3cb9a0674c09bb8278d9;hb=3df8394237281da49430194617e00a292b6067c4;hpb=8476307969a605bea67f6b702b0c1e7a52038bed;ds=sidebyside diff --git a/lib-mx/mbox.c b/lib-mx/mbox.c index 79658fa..26b5580 100644 --- a/lib-mx/mbox.c +++ b/lib-mx/mbox.c @@ -546,15 +546,9 @@ 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. */ - mutt_mktemp (tempfile); - if ((i = open (tempfile, O_WRONLY | O_EXCL | O_CREAT, 0600)) == -1 || - (fp = fdopen (i, "w")) == NULL) { - if (-1 != i) { - close (i); - unlink (tempfile); - } + fp = m_tempfile (tempfile, _POSIX_PATH_MAX, NONULL(Tempdir), NULL); + if (fp == NULL) { mutt_error _("Could not create temporary file!"); - mutt_sleep (5); goto bail; } @@ -727,9 +721,8 @@ static int mbox_sync_mailbox (CONTEXT * ctx, int unused __attribute__ ((unused)) char savefile[_POSIX_PATH_MAX]; - snprintf (savefile, sizeof (savefile), "%s/mutt.%s-%s-%u", - NONULL (Tempdir), NONULL (Username), NONULL (Hostname), - (unsigned int) getpid ()); + snprintf(savefile, sizeof (savefile), "%s/mutt.%s-%u", + NONULL(Tempdir), NONULL(Username), (unsigned int)getpid()); rename (tempfile, savefile); mutt_unblock_signals (); mx_fastclose_mailbox (ctx);