From 299aefebf266c4bfd6637834b8cabdd78a345b49 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Thu, 26 Feb 2009 14:36:30 +0000 Subject: [PATCH] * src/storage_backend_fs.c: fix compile-error when configured without qemu-img daniel --- ChangeLog | 5 +++++ src/storage_backend_fs.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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"));