]> xenbits.xensource.com Git - libvirt.git/commitdiff
* src/storage_backend_fs.c: fix compile-error when configured without qemu-img
authorDaniel Veillard <veillard@redhat.com>
Thu, 26 Feb 2009 14:36:30 +0000 (14:36 +0000)
committerDaniel Veillard <veillard@redhat.com>
Thu, 26 Feb 2009 14:36:30 +0000 (14:36 +0000)
daniel

ChangeLog
src/storage_backend_fs.c

index 6eef4af0dadd218ccbd876fc71a3b0d180fadfd6..409937e69ce2f9cea0b6a50f45e1718b77221f43 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Feb 26 15:35:40 CET 2009 Daniel Veillard <veillard@redhat.com>
+
+       * src/storage_backend_fs.c: fix compile-error when configured without
+       qemu-img
+
 Thu Feb 26 14:43:48 CET 2009 Daniel Veillard <veillard@redhat.com>
 
        * python/Makefile.am: avoid a parallel make issue #472702
index 240de96848d31921fab586cd04cd2c7ab04e6b86..c0b130e1f37b63e11984a86fa28bc004153843b0 100644 (file)
@@ -1130,7 +1130,7 @@ virStorageBackendFileSystemVolCreate(virConnectPtr conn,
                                   vol->target.format);
             return -1;
         }
-        if (vol->target.backingStore != NULL) {
+        if (vol->backingStore.path != NULL) {
             virStorageReportError(conn, VIR_ERR_NO_SUPPORT,
                                   _("copy-on-write image not supported with "
                                     "qcow-create"));