]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Various fixes for typos found by lintian (#3705)
authorMichael Biebl <mbiebl@gmail.com>
Tue, 12 Jul 2016 10:52:11 +0000 (12:52 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 12 Jul 2016 10:52:11 +0000 (12:52 +0200)
15 files changed:
NEWS
man/libudev.xml
man/sd_event_add_time.xml
man/systemd-socket-activate.xml
man/systemd.special.xml
man/systemd.timer.xml
src/boot/bootctl.c
src/core/cgroup.c
src/core/unit.c
src/journal-remote/microhttpd-util.c
src/libsystemd-network/lldp-neighbor.c
src/libsystemd/sd-login/sd-login.c
src/machine/machined-dbus.c
src/network/networkd-link.c
src/nspawn/nspawn.c

diff --git a/NEWS b/NEWS
index dcc1d55048907cf8ae3ccaa7d30ac692c345375c..bdba05eb2a05ae88acb3d465c7e88a7acc93acd7 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -569,7 +569,7 @@ CHANGES WITH 228:
           the service.
 
         * Timer units gained support for a new RemainAfterElapse=
-          setting which takes a boolean argument. It defaults on,
+          setting which takes a boolean argument. It defaults to on,
           exposing behaviour unchanged to previous releases. If set to
           off, timer units are unloaded after they elapsed if they
           cannot elapse again. This is particularly useful for
@@ -760,7 +760,7 @@ CHANGES WITH 227:
         * Support for USB FunctionFS activation has been added. This
           allows implementation of USB gadget services that are
           activated as soon as they are requested, so that they don't
-          have to run continously, similar to classic socket
+          have to run continuously, similar to classic socket
           activation.
 
         * The "systemctl exit" command now optionally takes an
index 7ef978463cedcbe6d5e6fa79d271180e2a594fee..53b68dcc89b4dbd20e8c18c1a22af2f87a1ab729 100644 (file)
@@ -81,7 +81,7 @@
     <para>To introspect a local device on a system, a udev device
     object can be created via
     <citerefentry><refentrytitle>udev_device_new_from_syspath</refentrytitle><manvolnum>3</manvolnum></citerefentry>
-    and friends. The device object allows to query current state,
+    and friends. The device object allows one to query current state,
     read and write attributes and lookup properties of the device in
     question.</para>
 
index 2c0bd0ba10c5eb025e4e2f482fe2df96070ce976..5496b71529cfe0714c868bf7c49521f8930f644c 100644 (file)
     regarding the various types of clocks. The <parameter>usec</parameter> parameter specifies the earliest time, in
     microseconds (µs), relative to the clock's epoch, when the timer shall be triggered. If a time already in the past
     is specified (including <constant>0</constant>), this timer source "fires" immediately and is ready to be
-    dispatched. If the paramater is specified as <constant>UINT64_MAX</constant> the timer event will never elapse,
+    dispatched. If the parameter is specified as <constant>UINT64_MAX</constant> the timer event will never elapse,
     which may be used as an alternative to explicitly disabling a timer event source with
     <citerefentry><refentrytitle>sd_event_source_set_enabled</refentrytitle><manvolnum>3</manvolnum></citerefentry>. The
     <parameter>accuracy</parameter> parameter specifies an additional accuracy value in µs specifying how much the
index 5d7f157c72dd3b5c826feaf8267f89ccfa8a8bd6..2cf3a7d3779c9cd95c7e5131e6837029c5e18928 100644 (file)
         <varname>FileDescriptorName=</varname> in socket unit files, and enables use of
         <citerefentry><refentrytitle>sd_listen_fds_with_names</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
         Multiple entries may be specifies using separate options or by separating names with colons
-        (<literal>:</literal>) in one option. In case more names are given than descriptors, superflous ones willl be
+        (<literal>:</literal>) in one option. In case more names are given than descriptors, superfluous ones willl be
         ignored. In case less names are given than descriptors, the remaining file descriptors will be unnamed.
         </para></listitem>
       </varlistentry>
index 19ca6d68376b928140b0f703f01ef5d91f7f52f3..9d79315069849d27ee2d038c7103a753a53e1d7f 100644 (file)
           <citerefentry><refentrytitle>systemd-fstab-generator</refentrytitle><manvolnum>3</manvolnum></citerefentry>
           and
           <citerefentry><refentrytitle>systemd-gpt-auto-generator</refentrytitle><manvolnum>3</manvolnum></citerefentry>
-          automatically setup the appropiate dependencies to make this happen.
+          automatically setup the appropriate dependencies to make this happen.
           </para>
         </listitem>
       </varlistentry>
index 0fa95e97a80caa52bbe9ca0e52b31cecd9644d7e..4fe140e4bc3c0aa7cf2db574ab8880469386ac1e 100644 (file)
@@ -76,7 +76,7 @@
 
     <para>Note that in case the unit to activate is already active at the time the timer elapses it is not restarted,
     but simply left running. There is no concept of spawning new service instances in this case. Due to this, services
-    with <varname>RemainAfterExit=</varname> set (which stay around continously even after the service's main process
+    with <varname>RemainAfterExit=</varname> set (which stay around continuously even after the service's main process
     exited) are usually not suitable for activation via repetitive timers, as they will only be activated once, and
     then stay around forever.</para>
   </refsect1>
index d0af41498fd9949644c82b5ae1df700495808e5a..0d4294872030f8b7209f517da10ccf3c23bc789d 100644 (file)
@@ -101,7 +101,7 @@ static int verify_esp(const char *p, uint32_t *part, uint64_t *pstart, uint64_t
         errno = 0;
         r = blkid_do_safeprobe(b);
         if (r == -2) {
-                log_error("File system \"%s\" is ambigious.", p);
+                log_error("File system \"%s\" is ambiguous.", p);
                 return -ENODEV;
         } else if (r == 1) {
                 log_error("File system \"%s\" does not contain a label.", p);
index 2ba1627b85b818f3f65008890e676862b2e8c02a..94d116160504a646728d1f89d844d1126d46666f 100644 (file)
@@ -1136,7 +1136,7 @@ int unit_watch_cgroup(Unit *u) {
         /* Only applies to the unified hierarchy */
         r = cg_unified();
         if (r < 0)
-                return log_unit_error_errno(u, r, "Failed detect wether the unified hierarchy is used: %m");
+                return log_unit_error_errno(u, r, "Failed detect whether the unified hierarchy is used: %m");
         if (r == 0)
                 return 0;
 
index 1479d0660651174d45b5a82e4ce2ed27fd66155e..fdf7ce3af33ba3e5a371fa45165958938fa1a7be 100644 (file)
@@ -1683,7 +1683,7 @@ static void unit_check_unneeded(Unit *u) {
                         if (unit_active_or_pending(other))
                                 return;
 
-        /* If stopping a unit fails continously we might enter a stop
+        /* If stopping a unit fails continuously we might enter a stop
          * loop here, hence stop acting on the service being
          * unnecessary after a while. */
         if (!ratelimit_test(&u->auto_stop_ratelimit)) {
@@ -1728,7 +1728,7 @@ static void unit_check_binds_to(Unit *u) {
         if (!stop)
                 return;
 
-        /* If stopping a unit fails continously we might enter a stop
+        /* If stopping a unit fails continuously we might enter a stop
          * loop here, hence stop acting on the service being
          * unnecessary after a while. */
         if (!ratelimit_test(&u->auto_stop_ratelimit)) {
index c65c43186f8a6cfb40b4493aa802bcddb57505e8..2f16b02e9a98f663832da93b12058d5b29cf41e3 100644 (file)
@@ -60,7 +60,7 @@ static int mhd_respond_internal(struct MHD_Connection *connection,
         if (!response)
                 return MHD_NO;
 
-        log_debug("Queing response %u: %s", code, buffer);
+        log_debug("Queueing response %u: %s", code, buffer);
         MHD_add_response_header(response, "Content-Type", "text/plain");
         r = MHD_queue_response(connection, code, response);
         MHD_destroy_response(response);
index 88f7e329b0e725b92dbc62bbc7da5113fb6dd305..53e29377b35dd482f525e598d346d3ce80353372 100644 (file)
@@ -197,7 +197,7 @@ int lldp_neighbor_parse(sd_lldp_neighbor *n) {
         assert(n);
 
         if (n->raw_size < sizeof(struct ether_header)) {
-                log_lldp("Recieved truncated packet, ignoring.");
+                log_lldp("Received truncated packet, ignoring.");
                 return -EBADMSG;
         }
 
index 9d4f187502bda59c009be25927118eaddd55e2e5..3fcefada3f432e8b81ce51c4d95eaf92125b426a 100644 (file)
@@ -124,7 +124,7 @@ _public_ int sd_pid_get_cgroup(pid_t pid, char **cgroup) {
 
         /* The internal APIs return the empty string for the root
          * cgroup, let's return the "/" in the public APIs instead, as
-         * that's easier and less ambigious for people to grok. */
+         * that's easier and less ambiguous for people to grok. */
         if (isempty(c)) {
                 free(c);
                 c = strdup("/");
index 52ce83a18537e6949b4e1dc7d260c8bf228d2386..1923e8b971d41594e0cb48755614beca6406c3bf 100644 (file)
@@ -953,7 +953,7 @@ static int method_clean_pool(sd_bus_message *message, void *userdata, sd_bus_err
 
         /* Create a temporary file we can dump information about deleted images into. We use a temporary file for this
          * instead of a pipe or so, since this might grow quit large in theory and we don't want to process this
-         * continously */
+         * continuously */
         result_fd = open_tmpfile_unlinkable("/tmp/", O_RDWR|O_CLOEXEC);
         if (result_fd < 0)
                 return -errno;
index 2a9a7bb7c7bddc76f05570b4cedca81b62ce84ba..82f56158be6a6d3ab01580f0354e1d950eca8d94 100644 (file)
@@ -2726,7 +2726,7 @@ network_file_fail:
 
                 r = sd_dhcp_client_set_request_address(link->dhcp_client, &address.in);
                 if (r < 0)
-                        return log_link_error_errno(link, r, "Falied to set inital DHCPv4 address %s: %m", dhcp4_address);
+                        return log_link_error_errno(link, r, "Falied to set initial DHCPv4 address %s: %m", dhcp4_address);
         }
 
 dhcp4_address_fail:
@@ -2744,7 +2744,7 @@ dhcp4_address_fail:
 
                 r = sd_ipv4ll_set_address(link->ipv4ll, &address.in);
                 if (r < 0)
-                        return log_link_error_errno(link, r, "Falied to set inital IPv4LL address %s: %m", ipv4ll_address);
+                        return log_link_error_errno(link, r, "Falied to set initial IPv4LL address %s: %m", ipv4ll_address);
         }
 
 ipv4ll_address_fail:
index 73c56d7310b3e50804eda599f8632a708a7d49a9..0bab2557b0d323b872299c529dae16931f4ec57a 100644 (file)
@@ -2873,7 +2873,7 @@ static int outer_child(
                         if (l < 0)
                                 return log_error_errno(errno, "Failed to recv UID shift: %m");
                         if (l != sizeof(arg_uid_shift)) {
-                                log_error("Short read while recieving UID shift.");
+                                log_error("Short read while receiving UID shift.");
                                 return -EIO;
                         }
                 }