OpenSSL: fix verify-certs stack initialization
[exim.git] / src / src / tls-gnu.c
index 89e3ef2f69214aa61942e4c56af9d56a08d27ef7..954fd76b1c768d47670db7a2f0806bd397df2a13 100644 (file)
@@ -851,7 +851,7 @@ if (rc < 0)
     return tls_error(US"Filename too long to generate replacement",
         filename, NULL, errstr);
 
-  temp_fn = string_copy(US"%s.XXXXXXX");
+  temp_fn = string_copy(US"exim-dh.XXXXXXX");
   if ((fd = mkstemp(CS temp_fn)) < 0)  /* modifies temp_fn */
     return tls_error_sys(US"Unable to open temp file", errno, NULL, errstr);
   (void)exim_chown(temp_fn, exim_uid, exim_gid);   /* Probably not necessary */