/**
* Create an (empty) temporary file on disk.
*
- * @param template component to use for the name;
+ * @param tmpl component to use for the name;
* does NOT contain "XXXXXX" or "/tmp/".
* @return NULL on error, otherwise name of fresh
* file on disk in directory for temporary files
*/
char *
-GNUNET_DISK_mktemp (const char *template);
+GNUNET_DISK_mktemp (const char *tmpl);
/**
/**
* Create an (empty) temporary file on disk.
*
- * @param t component to use for the name;
+ * @param tmpl component to use for the name;
* does NOT contain "XXXXXX" or "/tmp/".
* @return NULL on error, otherwise name of fresh
* file on disk in directory for temporary files
*/
char *
-GNUNET_DISK_mktemp (const char *t)
+GNUNET_DISK_mktemp (const char *tmpl)
{
const char *tmpdir;
int fd;