qemu: Clarify a couple error messages

A fedora translator filed:

https://bugzilla.redhat.com/show_bug.cgi?id=580816

Pointing out these two error messages as unclear: "write save" sounds
like a typo without context, and lack of a colon made the second message
difficult to parse.
This commit is contained in:
Cole Robinson 2010-05-17 15:19:27 -04:00
parent d533a98ed6
commit 07c621d09c

View File

@ -4805,7 +4805,8 @@ static int qemudDomainSaveFileOpHook(int fd, void *data) {
if (safewrite(fd, hdata->header, sizeof(*hdata->header)) != sizeof(*hdata->header)) { if (safewrite(fd, hdata->header, sizeof(*hdata->header)) != sizeof(*hdata->header)) {
ret = errno; ret = errno;
qemuReportError(VIR_ERR_OPERATION_FAILED, qemuReportError(VIR_ERR_OPERATION_FAILED,
_("failed to write save header to '%s'"), hdata->path); _("failed to write header to domain save file '%s'"),
hdata->path);
goto endjob; goto endjob;
} }
@ -5005,8 +5006,9 @@ static int qemudDomainSaveFlag(virDomainPtr dom, const char *path,
if (statfs_ret == -1) { if (statfs_ret == -1) {
virReportSystemError(errno, virReportSystemError(errno,
_("Failed to create domain save file '%s'" _("Failed to create domain save file "
" statfs of all elements of path failed."), "'%s': statfs of all elements of path "
"failed"),
path); path);
VIR_FREE(dirpath); VIR_FREE(dirpath);
goto endjob; goto endjob;