]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu: fix error message on directory creation
authorEric Blake <eblake@redhat.com>
Wed, 22 Aug 2018 21:21:51 +0000 (16:21 -0500)
committerEric Blake <eblake@redhat.com>
Wed, 22 Aug 2018 21:24:06 +0000 (16:24 -0500)
Minor copy-and-paste bug present since commit 462c74c3, in Apr 2010.

Signed-off-by: Eric Blake <eblake@redhat.com>
src/qemu/qemu_driver.c

index 21e9e87ddd7bd538278985bd1074903648990914..da8c4e89917e9dce4a071386ccbb58b3d19078fd 100644 (file)
@@ -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;
     }