]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
README: add a Fossies codespell badge
authorEvgeny Vereshchagin <evvers@ya.ru>
Fri, 29 May 2020 11:35:11 +0000 (13:35 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 29 May 2020 13:06:16 +0000 (15:06 +0200)
I keep forgetting where the report is. Hopefully the badge will
make it easier to find it. I also fixed several typos codespell
found along the way.

README.md
src/core/main.c
src/network/networkd-dhcp6.c

index 8e72fbc2bef59476cc970fef914e0c8d099055b9..f4ab897d927130e9409d1f23f493b39fa3f3e174 100644 (file)
--- a/README.md
+++ b/README.md
@@ -14,6 +14,7 @@ System and Service Manager
 [![Language Grade: C/C++](https://img.shields.io/lgtm/grade/cpp/g/systemd/systemd.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/systemd/systemd/context:cpp)<br/>
 [![CentOS CI Build Status](https://ci.centos.org/buildStatus/icon?job=systemd-pr-build)](https://ci.centos.org/job/systemd-pr-build/)<br/>
 [![Build Status](https://dev.azure.com/evvers/systemd-systemd/_apis/build/status/systemd.systemd?branchName=master)](https://dev.azure.com/evvers/systemd-systemd/_build/latest?definitionId=1&branchName=master)<br/>
+[![Fossies codespell report](https://fossies.org/linux/test/systemd-master.tar.gz/codespell.svg)](https://fossies.org/linux/test/systemd-master.tar.gz/codespell.html)</br>
 [![Packaging status](https://repology.org/badge/tiny-repos/systemd.svg)](https://repology.org/project/systemd/versions)
 
 ## Details
index 5dda164fefd6fa4c5f70422904c747aa15e058f8..32b963d4a4f88b20e1a5e6630ba3a1942a3881ad 100644 (file)
@@ -517,7 +517,7 @@ static int parse_proc_cmdline_item(const char *key, const char *value, void *dat
         } else if (!value) {
                 const char *target;
 
-                /* Compatible with SysV, but supported independently even if SysV compatiblity is disabled. */
+                /* Compatible with SysV, but supported independently even if SysV compatibility is disabled. */
                 target = runlevel_to_target(key);
                 if (target)
                         return free_and_strdup_warn(&arg_default_unit, target);
index d0972f3593dcff329f646833d21a39f552a0ec01..6d1496306c9e81b1a993079399ebc6f3e60db698 100644 (file)
@@ -424,7 +424,7 @@ static int dhcp6_lease_pd_prefix_acquired(sd_dhcp6_client *client, Link *link) {
                  *    order. Prefixes that were previously already allocated to another
                  *    link will be skipped.
 
-                 * If a subnet id request couldn't be fullfilled the failure will be logged (as error)
+                 * If a subnet id request couldn't be fulfilled the failure will be logged (as error)
                  * and no further attempts at obtaining a prefix will be made.
 
                  * The assignment has to be split in two phases since subnet id
@@ -442,7 +442,7 @@ static int dhcp6_lease_pd_prefix_acquired(sd_dhcp6_client *client, Link *link) {
 
                 /* if r == -EAGAIN then the allocation failed because we ran
                  * out of addresses for the preferred subnet id's. This doesn't
-                 * mean we can't fullfill other prefix requests.
+                 * mean we can't fulfill other prefix requests.
                  *
                  * Since we do not have dedicated lists of links that request
                  * specific subnet id's and those that accept any prefix we
@@ -458,7 +458,7 @@ static int dhcp6_lease_pd_prefix_acquired(sd_dhcp6_client *client, Link *link) {
                         return r;
 
                 /* If the prefix distribution did return -EAGAIN we will try to
-                 * fullfill those with the next available pd delegated prefix. */
+                 * fulfill those with the next available pd delegated prefix. */
         }
 
         return 0;