]> xenbits.xensource.com Git - libvirt.git/commitdiff
storagefile: fix defintion vs definition typo
authorGuido Günther <agx@sigxcpu.org>
Fri, 8 Sep 2017 14:25:40 +0000 (16:25 +0200)
committerGuido Günther <agx@sigxcpu.org>
Mon, 11 Sep 2017 16:17:22 +0000 (18:17 +0200)
src/util/virstoragefile.c

index fbc8245f35054b40ad5b711999a4300116c133a2..e94ad32f09bd836a33f341c0c86887646aeb05a7 100644 (file)
@@ -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;
     }