[Pkg-libvirt-commits] [libguestfs] 190/266: v2v: utils: Don't need to use module name (Common_utils.) here.
Hilko Bengen
bengen at moszumanska.debian.org
Fri Oct 3 14:42:00 UTC 2014
This is an automated email from the git hooks/post-receive script.
bengen pushed a commit to annotated tag debian/1%1.27.35-1
in repository libguestfs.
commit a18629ce40457ef429dc6dbbd10cd89eb8cc4cf7
Author: Richard W.M. Jones <rjones at redhat.com>
Date: Tue Aug 26 19:34:22 2014 +0100
v2v: utils: Don't need to use module name (Common_utils.) here.
---
v2v/utils.ml | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/v2v/utils.ml b/v2v/utils.ml
index b541b1d..6db8341 100644
--- a/v2v/utils.ml
+++ b/v2v/utils.ml
@@ -34,16 +34,16 @@ let quote = Filename.quote
* quotes around the attribute.
*)
let xml_quote_attr str =
- let str = Common_utils.replace_str str "&" "&" in
- let str = Common_utils.replace_str str "'" "'" in
- let str = Common_utils.replace_str str "<" "<" in
- let str = Common_utils.replace_str str ">" ">" in
+ let str = replace_str str "&" "&" in
+ let str = replace_str str "'" "'" in
+ let str = replace_str str "<" "<" in
+ let str = replace_str str ">" ">" in
str
let xml_quote_pcdata str =
- let str = Common_utils.replace_str str "&" "&" in
- let str = Common_utils.replace_str str "<" "<" in
- let str = Common_utils.replace_str str ">" ">" in
+ let str = replace_str str "&" "&" in
+ let str = replace_str str "<" "<" in
+ let str = replace_str str ">" ">" in
str
(* URI quoting. *)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-libvirt/libguestfs.git
More information about the Pkg-libvirt-commits
mailing list