From: Eric Blake Date: Wed, 22 Aug 2018 21:21:51 +0000 (-0500) Subject: qemu: fix error message on directory creation X-Git-Tag: v4.7.0-rc1~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4c1cba28e13c9792656ec54d284798734a1ae0d;p=thirdparty%2Flibvirt.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 --- diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c index 21e9e87ddd..da8c4e8991 100644 --- a/src/qemu/qemu_driver.c +++ b/src/qemu/qemu_driver.c @@ -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; }