]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virsh-volume: Rename helper function makeCloneXML to vshMakeCloneXML
authorPeter Krempa <pkrempa@redhat.com>
Fri, 18 Jan 2013 15:33:34 +0000 (16:33 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Mon, 4 Feb 2013 09:34:33 +0000 (10:34 +0100)
tools/virsh-volume.c

index e17d9461267f5c60f5cc78689cf52446a38876d6..466188c8b2f07e34a9df3a58a1f85a1d7ab4c170 100644 (file)
@@ -464,7 +464,7 @@ cleanup:
 }
 
 static xmlChar *
-makeCloneXML(const char *origxml, const char *newname)
+vshMakeCloneXML(const char *origxml, const char *newname)
 {
 
     xmlDocPtr doc = NULL;
@@ -555,7 +555,7 @@ cmdVolClone(vshControl *ctl, const vshCmd *cmd)
     if (!origxml)
         goto cleanup;
 
-    newxml = makeCloneXML(origxml, name);
+    newxml = vshMakeCloneXML(origxml, name);
     if (!newxml) {
         vshPrint(ctl, "%s", _("Failed to allocate XML buffer"));
         goto cleanup;