Mention mkdtemp as another secure alternative to mktemp

[BZ #2898]
* misc/mktemp.c: Add mkdtemp to the link_warning message.
Based on patch by Aurelien Jarno.
This commit is contained in:
Gleb Fotengauer-Malinovskiy 2015-08-09 11:11:36 +02:00 committed by Dmitry V. Levin
parent fff289f358
commit 64d9cfd90e
3 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2015-08-27 Gleb Fotengauer-Malinovskiy <glebfm@altlinux.org>
[BZ #2898]
* misc/mktemp.c: Add mkdtemp to the link_warning message.
Based on patch by Aurelien Jarno.
2015-08-26 Stan Shebs <stanshebs@google.com>
* sysdeps/ieee754/ldbl-96/k_tanl.c: Include <libc-internal.h>.

8
NEWS
View File

@ -9,10 +9,10 @@ Version 2.23
* The following bugs are resolved with this release:
14341, 16517, 16519, 16520, 16734, 16973, 17787, 17905, 18084, 18086,
18240, 18265, 18370, 18421, 18480, 18525, 18610, 18618, 18647, 18661,
18674, 18681, 18778, 18781, 18787, 18789, 18790, 18795, 18796, 18820,
18823, 18824, 18863.
2898, 14341, 16517, 16519, 16520, 16734, 16973, 17787, 17905, 18084,
18086, 18240, 18265, 18370, 18421, 18480, 18525, 18610, 18618, 18647,
18661, 18674, 18681, 18778, 18781, 18787, 18789, 18790, 18795, 18796,
18820, 18823, 18824, 18863.
* The obsolete header <regexp.h> has been removed. Programs that require
this header must be updated to use <regex.h> instead.

View File

@ -33,4 +33,5 @@ __mktemp (template)
}
weak_alias (__mktemp, mktemp)
link_warning (mktemp, "the use of `mktemp' is dangerous, better use `mkstemp'")
link_warning (mktemp, "the use of `mktemp' is dangerous, "
"better use `mkstemp' or `mkdtemp'")