search for: 855b4d1

Displaying 1 result from an estimated 1 matches for "855b4d1".

Did you mean: 8554d41
2012 Oct 14
1
[PATCH] NEW API: mktemp
...st_name); + free (dest_name); + } + return r; + } else { + if (err == -1) { + reply_with_perror ("%s", dest_name); + free (dest_name); + return NULL; + } + return dest_name; + } +} diff --git a/generator/actions.ml b/generator/actions.ml index 13e54f3..855b4d1 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -4834,6 +4834,7 @@ manual page for more details." }; name = "mkdtemp"; style = RString "dir", [Pathname "tmpl"], []; proc_nr = Some 117; + deprecated_by = Some "mktemp";...