search for: 13e54f3

Displaying 2 results from an estimated 2 matches for "13e54f3".

Did you mean: 139543
2012 Oct 14
1
[PATCH] NEW API: mktemp
...quot;, dest_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&...
2012 Oct 13
0
[PATCH] New APIs: Model libvirt authentication events through the API.
...; + } + len = strlen (pass); + + r = guestfs_set_libvirt_requested_credential (g, i, pass, len); + if (r == -1) + exit (EXIT_FAILURE); + } + + free (creds[i]); + } + + free (reply); + free (creds); +} diff --git a/generator/actions.ml b/generator/actions.ml index 13e54f3..ac8e354 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -2379,6 +2379,107 @@ unplug the drive: see L<guestfs(3)/HOTPLUGGING>. The disk B<must not> be in use (eg. mounted) when you do this. We try to detect if the disk is in use and stop you from doing this." };...