Use m_tempfile and better errors msg
[apps/madmutt.git] / lib-crypt / pgpmicalg.c
index c30ae75..4e5e836 100644 (file)
@@ -137,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;
   }