From: Nils Durner Date: Sat, 3 Oct 2009 16:09:39 +0000 (+0000) Subject: redo r8922 X-Git-Tag: initial-import-from-subversion-38251~23411 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e12ac1ed07410877d074b7655dbd833022cc55a2;p=oweals%2Fgnunet.git redo r8922 --- 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;