Displaying 3 results from an estimated 3 matches for "0a4c1b3".
2017 Mar 13
0
[PATCH] mllib: Add a binding for realpath(3).
...le Realpath = struct
+ external realpath : string -> string = "guestfs_int_mllib_realpath"
+end
+
module StatVFS = struct
external free_space : string -> int64 =
"guestfs_int_mllib_statvfs_free_space"
diff --git a/mllib/unix_utils.mli b/mllib/unix_utils.mli
index 0a4c1b3..4795cb3 100644
--- a/mllib/unix_utils.mli
+++ b/mllib/unix_utils.mli
@@ -88,6 +88,11 @@ module Mkdtemp : sig
[Filename.temp_dir_name] is used. *)
end
+module Realpath : sig
+ val realpath : string -> string
+ (** [realpath(3)] returns the canonicalized absolute pathname. *)
+end
+...
2017 Mar 13
2
[PATCH] mllib: Add a binding for realpath(3).
I was planning to use this function to harden the code in
v2v/input_ova.ml against malicious OVA files. However I didn't
complete that work. Hate to see a good commit go to waste ...
Rich.
2017 Feb 22
4
[PATCH 0/3] v2v: vCenter: Remove proxy environment variables
Fix for:
https://bugzilla.redhat.com/show_bug.cgi?id=1354507
Main explanation is in patch #3.
Rich.