mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
qemu: fix error message on directory creation
Minor copy-and-paste bug present since commit 462c74c3, in Apr 2010. Signed-off-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
2cad501bcb
commit
a4c1cba28e
@ -656,7 +656,7 @@ qemuStateInitialize(bool privileged,
|
|||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
if (virFileMakePath(cfg->snapshotDir) < 0) {
|
if (virFileMakePath(cfg->snapshotDir) < 0) {
|
||||||
virReportSystemError(errno, _("Failed to create save dir %s"),
|
virReportSystemError(errno, _("Failed to create snapshot dir %s"),
|
||||||
cfg->snapshotDir);
|
cfg->snapshotDir);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user