From e12ac1ed07410877d074b7655dbd833022cc55a2 Mon Sep 17 00:00:00 2001 From: Nils Durner Date: Sat, 3 Oct 2009 16:09:39 +0000 Subject: [PATCH] redo r8922 --- src/include/gnunet_disk_lib.h | 4 ++-- src/util/disk.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/gnunet_disk_lib.h b/src/include/gnunet_disk_lib.h index 137d4a452..ac20a61a3 100644 --- a/src/include/gnunet_disk_lib.h +++ b/src/include/gnunet_disk_lib.h @@ -231,13 +231,13 @@ int GNUNET_DISK_file_get_identifiers (const char *filename, /** * 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); /** diff --git a/src/util/disk.c b/src/util/disk.c index a3d5db097..3b63bf48f 100644 --- a/src/util/disk.c +++ b/src/util/disk.c @@ -230,13 +230,13 @@ int GNUNET_DISK_file_get_identifiers (const char *filename, /** * 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; -- 2.25.1