mirror of https://gitee.com/openkylin/libvirt.git
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;
|
||||
}
|
||||
if (virFileMakePath(cfg->snapshotDir) < 0) {
|
||||
virReportSystemError(errno, _("Failed to create save dir %s"),
|
||||
virReportSystemError(errno, _("Failed to create snapshot dir %s"),
|
||||
cfg->snapshotDir);
|
||||
goto error;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue