* libc/stdio/mktemp.c (mkdtemp): Fix type in function name.

This commit is contained in:
Corinna Vinschen 2009-08-13 07:19:33 +00:00
parent ee47ad3213
commit 61189f19de
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,8 @@
2009=08-12 Jeff Johnston <jjohnstn@redhat.com>
2009-08-13 Corinna Vinschen <corinna@vinschen.de>
* libc/stdio/mktemp.c (mkdtemp): Fix type in function name.
2009-08-12 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdio/mktemp.c (_gettemp): Do not call _mkdir_r unless
HAVE_MKDIR is defined.

View File

@ -301,7 +301,7 @@ _DEFUN(mkstemp, (path),
# if !defined _ELIX_LEVEL || _ELIX_LEVEL >= 4
char *
_DEFUN(mkdemp, (path),
_DEFUN(mkdtemp, (path),
char *path)
{
return (_gettemp (_REENT, path, (int *) NULL, 1, 0) ? path : NULL);