From: Peter Krempa Date: Fri, 18 Jan 2013 15:33:34 +0000 (+0100) Subject: virsh-volume: Rename helper function makeCloneXML to vshMakeCloneXML X-Git-Tag: v1.0.3-rc1~256 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=042bf709a9c7fbdd2986f161a684f7c67d50d8fb;p=thirdparty%2Flibvirt.git virsh-volume: Rename helper function makeCloneXML to vshMakeCloneXML --- diff --git a/tools/virsh-volume.c b/tools/virsh-volume.c index e17d946126..466188c8b2 100644 --- a/tools/virsh-volume.c +++ b/tools/virsh-volume.c @@ -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;