]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
tests: fix misc spelling errors reported by codespell
authorDaniel P. Berrangé <berrange@redhat.com>
Fri, 2 Oct 2020 14:07:27 +0000 (15:07 +0100)
committerDaniel P. Berrangé <berrange@redhat.com>
Mon, 5 Oct 2020 09:28:43 +0000 (10:28 +0100)
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
tests/vircgroupmock.c
tests/virmockstathelpers.c
tests/virnetdaemondata/README
tests/virpcimock.c

index 2da60f886ab85fd8062a8ddd8795f5e483ee23e3..dac6b6b99134355dab34f0f75a096f6ea8d52d81 100644 (file)
@@ -58,7 +58,7 @@ const char *fakedevicedir1 = FAKEDEVDIR1;
  * use /sys/fs/cgroup, because we want to make it easy to
  * detect places where we've not mocked enough syscalls.
  *
- * In any open/acces/mkdir calls we look at path and if
+ * In any open/access/mkdir calls we look at path and if
  * it starts with /not/really/sys/fs/cgroup, we rewrite
  * the path to point at a subdirectory of the temporary
  * directory referred to by LIBVIRT_FAKE_ROOT_DIR env
index 1a58025a0a0a3348f1dc578e3ce96429fbec0baa..dde9a61c6ffc539ba3f9fb9f1fec187636076d55 100644 (file)
@@ -34,7 +34,7 @@
  * too.
  *
  * On 64-bit hosts the stat & stat64 functions are identical, always
- * refering to the 64-bit ABI.
+ * referring to the 64-bit ABI.
  *
  * On 32-bit hosts they refer to the 32-bit & 64-bit ABIs respectively.
  *
@@ -49,7 +49,7 @@
  * In GLibC there may be two additional functions exposed by the headers,
  * __xstat() and __xstat64(). When these exist, stat() and stat64() are
  * transparently rewritten to call __xstat() and __xstat64() respectively.
- * The former symbols will not actally exist in the library at all, only
+ * The former symbols will not actually exist in the library at all, only
  * the header. The leading "__" indicates the symbols are a private impl
  * detail of the C library that applications should not care about.
  * Unfortunately, because we are trying to mock replace the C library,
index d6d79d27d5ea8ffdd102c508fb18dce6e4543288..aa46ed3bbcf3da33a5607a62ac72c0f4eef8d8e9 100644 (file)
@@ -2,7 +2,7 @@
    ===========================
 
 The various input-data-*.json files are a record of all the historical
-formats that libvirt has been able to produce data for. Everytime a
+formats that libvirt has been able to produce data for. Every time a
 new field is added to the JSON output, a *new* input data file should
 be created. We must not add new fields to existing input-data files,
 nor must we ever re-structure them if code changes, as we must check
index 469aa01bb007593af2236e0aca328de058c5f077..064218d275d98ecc5042160565671f6d0789c64d 100644 (file)
@@ -1078,7 +1078,7 @@ open(const char *path, int flags, ...)
 
 # ifdef __GLIBC__
 /* in some cases this function may not be present in headers, so we need
- * a declaration to silence the complier */
+ * a declaration to silence the compiler */
 int
 __open_2(const char *path, int flags);