diff --git a/ChangeLog b/ChangeLog index 6eef4af0da..409937e69c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Feb 26 15:35:40 CET 2009 Daniel Veillard + + * src/storage_backend_fs.c: fix compile-error when configured without + qemu-img + Thu Feb 26 14:43:48 CET 2009 Daniel Veillard * python/Makefile.am: avoid a parallel make issue #472702 diff --git a/src/storage_backend_fs.c b/src/storage_backend_fs.c index 240de96848..c0b130e1f3 100644 --- a/src/storage_backend_fs.c +++ b/src/storage_backend_fs.c @@ -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"));