qemu: Fix typo in qemuTeardownDiskPathDeny

typo in error message, it should be by copy-a-paste
from "qemuSetupDiskPathAllow".

* src/qemu/qemu_driver.c (qemuTeardownDiskPathDeny)
This commit is contained in:
Osier Yang 2010-12-01 20:46:20 +08:00 committed by Matthias Bolte
parent 428ea3a626
commit ead3c43456

View File

@ -3407,7 +3407,7 @@ static int qemuTeardownDiskPathDeny(virDomainDiskDefPtr disk ATTRIBUTE_UNUSED,
VIR_DEBUG("Ignoring EACCES for %s", path);
} else {
virReportSystemError(-rc,
_("Unable to allow access for disk path %s"),
_("Unable to deny access for disk path %s"),
path);
return -1;
}