about summary refs log tree commit diff
path: root/src/temp/mkostemps.c
Commit message (Collapse)AuthorAgeFilesLines
* make mkdtemp and mkstemp family leave template unchanged on failRich Felker2013-08-021-3/+4
| | | | | | also refactor mkdtemp based on new shared temp code, removing dependency on the deprecated mktemp, whose behavior made this logic more difficult.
* use memcmp instead of str[n]cmp for temp function XXXXXX checkingRich Felker2013-02-201-1/+1
|
* fix error cases in mkostemps coreRich Felker2013-02-201-6/+3
| | | | | | 1. wrong return value and missing errno for negative suffix len 2. failure to catch suffix len > strlen 3. remove unwanted clearing of input string in invalid case
* add mkostemp, mkstemps, and mkostemps functions and reorganize temp internalsRich Felker2013-02-201-0/+32
based on patch contributed by Anthony G. Basile (blueness) some issues remain with the filename generation algorithm and other small bugs, but this patch has been sitting around long enough that I feel it's best to get it committed and then work out any remaining issues.