qemu_driver: fix existance vs existence typo

This commit is contained in:
Guido Günther 2017-09-08 16:27:41 +02:00
parent 9c0d66bb07
commit 175710b6f2

View File

@ -16835,7 +16835,7 @@ qemuDomainBlockCopyValidateMirror(virStorageSourcePtr mirror,
if (virStorageFileAccess(mirror, F_OK) < 0) {
if (errno != ENOENT) {
virReportSystemError(errno, "%s",
_("unable to verify existance of "
_("unable to verify existence of "
"block copy target"));
return -1;
}