[libvirt] [PATCH 1/3] storagefile: fix defintion vs definition typo

Guido Günther agx at sigxcpu.org
Fri Sep 8 14:31:04 UTC 2017


---
 src/util/virstoragefile.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/util/virstoragefile.c b/src/util/virstoragefile.c
index fbc8245f35..e94ad32f09 100644
--- a/src/util/virstoragefile.c
+++ b/src/util/virstoragefile.c
@@ -3253,7 +3253,7 @@ virStorageSourceParseBackingJSONInternal(virStorageSourcePtr src,
     if (!(file = virJSONValueObjectGetObject(deflattened, "file"))) {
         str = virJSONValueToString(json, false);
         virReportError(VIR_ERR_INVALID_ARG,
-                       _("JSON backing volume defintion '%s' lacks 'file' object"),
+                       _("JSON backing volume definition '%s' lacks 'file' object"),
                        NULLSTR(str));
         goto cleanup;
     }
@@ -3261,7 +3261,7 @@ virStorageSourceParseBackingJSONInternal(virStorageSourcePtr src,
     if (!(drvname = virJSONValueObjectGetString(file, "driver"))) {
         str = virJSONValueToString(json, false);
         virReportError(VIR_ERR_INVALID_ARG,
-                       _("JSON backing volume defintion '%s' lacks driver name"),
+                       _("JSON backing volume definition '%s' lacks driver name"),
                        NULLSTR(str));
         goto cleanup;
     }
-- 
2.14.1




More information about the libvir-list mailing list