Use m_tempfile and better errors msg
[apps/madmutt.git] / lib-crypt / pgpmicalg.c
index f750e19..4e5e836 100644 (file)
  * algorithm.
  */
 
-#if HAVE_CONFIG_H
-# include "config.h"
-#endif
+#include <lib-lib/lib-lib.h>
+
+#include <lib-mime/mime.h>
+#include <lib-ui/curses.h>
 
-#include "mutt.h"
 #include "handler.h"
 #include "pgp.h"
 #include "pgppacket.h"
 #include "charset.h"
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <ctype.h>
-
-#include <lib-lib/file.h>
-
-#include <lib-mime/mime.h>
 
 static struct {
   short id;
@@ -145,15 +137,15 @@ static short pgp_find_hash (const char *fname)
 
   short rv = -1;
 
-  mutt_mktemp (tempfile);
-  if ((out = safe_fopen (tempfile, "w+")) == NULL) {
-    mutt_perror (tempfile);
+  out = m_tempfile (tempfile, sizeof(tempfile), NONULL(Tempdir), NULL);
+  if (!out) {
+    mutt_perror (_("Can't create temporary file"));
     goto bye;
   }
   unlink (tempfile);
 
   if ((in = fopen (fname, "r")) == NULL) {
-    mutt_perror (fname);
+    mutt_perror (_("Can't create temporary file"));
     goto bye;
   }
 
@@ -166,8 +158,8 @@ static short pgp_find_hash (const char *fname)
 
 bye:
 
-  safe_fclose (&in);
-  safe_fclose (&out);
+  m_fclose(&in);
+  m_fclose(&out);
   pgp_release_packet ();
   return rv;
 }