mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 19:32:19 +00:00
* src/storage_backend_fs.c: fix compile-error when configured without qemu-img
daniel
This commit is contained in:
parent
a7868e0131
commit
299aefebf2
@ -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>
|
Thu Feb 26 14:43:48 CET 2009 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
* python/Makefile.am: avoid a parallel make issue #472702
|
* python/Makefile.am: avoid a parallel make issue #472702
|
||||||
|
@ -1130,7 +1130,7 @@ virStorageBackendFileSystemVolCreate(virConnectPtr conn,
|
|||||||
vol->target.format);
|
vol->target.format);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (vol->target.backingStore != NULL) {
|
if (vol->backingStore.path != NULL) {
|
||||||
virStorageReportError(conn, VIR_ERR_NO_SUPPORT,
|
virStorageReportError(conn, VIR_ERR_NO_SUPPORT,
|
||||||
_("copy-on-write image not supported with "
|
_("copy-on-write image not supported with "
|
||||||
"qcow-create"));
|
"qcow-create"));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user