]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tree-wide: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sat, 4 Sep 2021 22:12:50 +0000 (07:12 +0900)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sun, 5 Sep 2021 07:09:13 +0000 (09:09 +0200)
mkosi.default.d/fedora/mkosi.fedora
src/analyze/analyze-security.c
src/basic/socket-util.h
src/libsystemd/sd-netlink/netlink-types-rtnl.c
test/units/testsuite-63.sh

index cc3a5a2d1ab091ea2aeff15951b5e4ebf417b508..bfd6f633d5bde86894885369075fb0e9e048733c 100644 (file)
@@ -67,7 +67,7 @@ BuildPackages=
 Packages=
         gdb
         nano
-        # procps-ng provides a set of useful utilies (ps, free, etc)
+        # procps-ng provides a set of useful utilities (ps, free, etc)
         procps-ng
         strace
         tpm2-tss
index 63d1998ed373b1df21868cf732bd076981b800eb..03b63cd1b311c2b61d1486f7ae05938b3851ec06 100644 (file)
@@ -1615,7 +1615,7 @@ static JsonVariant* security_assessor_find_in_policy(const struct security_asses
         if (!policy)
                 return NULL;
         if (!json_variant_is_object(policy)) {
-                log_debug("Specificied policy is not a JSON object, ignoring.");
+                log_debug("Specified policy is not a JSON object, ignoring.");
                 return NULL;
         }
 
index a844c1151afda2563fb7e0c67d104a096a4a91fe..7fd591f6e2e9ece0b832f704011b468cca7fb0fb 100644 (file)
@@ -286,7 +286,7 @@ struct timespec_large {
 };
 
 /* glibc duplicates timespec/timeval on certain 32bit archs, once in 32bit and once in 64bit.
- * See __convert_scm_timestamps() in glibc souce code. Hence, we need additional buffer space for them
+ * See __convert_scm_timestamps() in glibc source code. Hence, we need additional buffer space for them
  * to prevent from recvmsg_safe() returning -EXFULL. */
 #define CMSG_SPACE_TIMEVAL                                              \
         ((sizeof(struct timeval) == sizeof(struct timeval_large)) ?     \
index 3424bd625a6161b92a254c1c34225087541fc4bc..2c01751a5246eddd2bfdc917b567d443badbfc01 100644 (file)
@@ -238,7 +238,7 @@ static  const NLType rtnl_link_info_data_gre_types[] = {
 };
 
 /* IFLA_IPTUN_ attributes are used in ipv4/ipip.c, ipv6/ip6_tunnel.c, and ipv6/sit.c. And unfortunately,
- * IFLA_IPTUN_FLAGS is used with differnt types, ugh... */
+ * IFLA_IPTUN_FLAGS is used with different types, ugh... */
 #define DEFINE_IPTUN_TYPES(name, flags_type)                                            \
         static const NLType rtnl_link_info_data_##name##_types[] = {                    \
                 [IFLA_IPTUN_LINK]                = { .type = NETLINK_TYPE_U32 },        \
index 207dfeff6892b70ad65029b498e1f0da1fae9db2..4474cc3a2a56ca65647f57368e51cfa420ec252e 100755 (executable)
@@ -55,7 +55,7 @@ EOF
 systemd-analyze verify --recursive-errors=no /tmp/testfile2.service
 
 set +e
-# Non-zero exit status since all associated dependencies are recusrively loaded when the unit file is loaded
+# Non-zero exit status since all associated dependencies are recusively loaded when the unit file is loaded
 systemd-analyze verify --recursive-errors=yes /tmp/testfile2.service \
     && { echo 'unexpected success'; exit 1; }
 set -e