From 3df8394237281da49430194617e00a292b6067c4 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 24 Nov 2006 23:29:13 +0100 Subject: [PATCH] Use m_tempfile instead of mutt_mktemp Signed-off-by: Julien Danjou Signed-off-by: Pierre Habouzit --- lib-mx/mbox.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/lib-mx/mbox.c b/lib-mx/mbox.c index 03c8d27..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; } -- 2.20.1