From: Philipp Hahn Date: Thu, 24 Feb 2011 07:06:03 +0000 (+0100) Subject: Fix spelling mistake: seek X-Git-Tag: CVE-2011-1146~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0905d1ee950a37a8764a0f8dfc31be80b2b564c3;p=thirdparty%2Flibvirt.git Fix spelling mistake: seek Replace wrong "set" by correct "seek" in error message. Signed-off-by: Philipp Hahn --- diff --git a/src/util/storage_file.c b/src/util/storage_file.c index 4faa99d8b3..62dad0d8c4 100644 --- a/src/util/storage_file.c +++ b/src/util/storage_file.c @@ -824,7 +824,7 @@ virStorageFileGetMetadataFromFD(const char *path, memset(meta, 0, sizeof (*meta)); if (lseek(fd, 0, SEEK_SET) == (off_t)-1) { - virReportSystemError(errno, _("cannot set to start of '%s'"), path); + virReportSystemError(errno, _("cannot seek to start of '%s'"), path); goto cleanup; }