diff options
author | Ben Boeckel <mathstuf@gmail.com> | 2019-04-27 02:22:40 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-04-29 16:47:18 +0200 |
commit | 5238e9575906297608ff802a27e2ff9effa3b338 (patch) | |
tree | e17c534a09908167a0697a49ed3237f43134eb4c /src/libsystemd/sd-bus | |
parent | network: drop invalid assertion (diff) | |
download | systemd-5238e9575906297608ff802a27e2ff9effa3b338.tar.xz systemd-5238e9575906297608ff802a27e2ff9effa3b338.zip |
codespell: fix spelling errors
Diffstat (limited to 'src/libsystemd/sd-bus')
-rw-r--r-- | src/libsystemd/sd-bus/GVARIANT-SERIALIZATION | 2 | ||||
-rw-r--r-- | src/libsystemd/sd-bus/bus-control.c | 2 | ||||
-rw-r--r-- | src/libsystemd/sd-bus/bus-internal.c | 2 | ||||
-rw-r--r-- | src/libsystemd/sd-bus/bus-message.c | 2 | ||||
-rw-r--r-- | src/libsystemd/sd-bus/sd-bus.c | 8 | ||||
-rw-r--r-- | src/libsystemd/sd-bus/test-bus-queue-ref-cycle.c | 2 |
6 files changed, 9 insertions, 9 deletions
diff --git a/src/libsystemd/sd-bus/GVARIANT-SERIALIZATION b/src/libsystemd/sd-bus/GVARIANT-SERIALIZATION index 3110d57913..973a063761 100644 --- a/src/libsystemd/sd-bus/GVARIANT-SERIALIZATION +++ b/src/libsystemd/sd-bus/GVARIANT-SERIALIZATION @@ -55,7 +55,7 @@ Regarding the framing of dbus2, also see: https://wiki.gnome.org/Projects/GLib/GDBus/Version2 The first four bytes of the header are defined the same way for dbus1 -and dbus2. The first bytes contain the endianess field and the +and dbus2. The first bytes contain the endianness field and the protocol version, so that the remainder of the message can be safely made sense of just by looking at the first 32bit. diff --git a/src/libsystemd/sd-bus/bus-control.c b/src/libsystemd/sd-bus/bus-control.c index 5f2502076e..f817cf0a85 100644 --- a/src/libsystemd/sd-bus/bus-control.c +++ b/src/libsystemd/sd-bus/bus-control.c @@ -532,7 +532,7 @@ _public_ int sd_bus_get_name_creds( if (!sd_bus_error_has_name(&error, SD_BUS_ERROR_UNKNOWN_METHOD)) return r; - /* If we got an unknown method error, fall back to the invidual calls... */ + /* If we got an unknown method error, fall back to the individual calls... */ need_separate_calls = true; sd_bus_error_free(&error); diff --git a/src/libsystemd/sd-bus/bus-internal.c b/src/libsystemd/sd-bus/bus-internal.c index dff39cb13f..d5f8c6db64 100644 --- a/src/libsystemd/sd-bus/bus-internal.c +++ b/src/libsystemd/sd-bus/bus-internal.c @@ -180,7 +180,7 @@ bool member_name_is_valid(const char *p) { * Complex pattern match * This checks whether @a is a 'complex-prefix' of @b, or @b is a * 'complex-prefix' of @a, based on strings that consist of labels with @c as - * spearator. This function returns true if: + * separator. This function returns true if: * - both strings are equal * - either is a prefix of the other and ends with @c * The second rule makes sure that either string needs to be fully included in diff --git a/src/libsystemd/sd-bus/bus-message.c b/src/libsystemd/sd-bus/bus-message.c index 427d42f296..1759e13ca1 100644 --- a/src/libsystemd/sd-bus/bus-message.c +++ b/src/libsystemd/sd-bus/bus-message.c @@ -924,7 +924,7 @@ _public_ sd_bus_message* sd_bus_message_unref(sd_bus_message *m) { /* Unset the bus field if neither the user has a reference nor this message is queued. We are careful * to reset the field only after the last reference to the bus is dropped, after all we might keep - * multiple references to the bus, once for each reference kept on outselves. */ + * multiple references to the bus, once for each reference kept on ourselves. */ m->bus = NULL; return message_free(m); diff --git a/src/libsystemd/sd-bus/sd-bus.c b/src/libsystemd/sd-bus/sd-bus.c index 3df7c86b89..1c25ba9dea 100644 --- a/src/libsystemd/sd-bus/sd-bus.c +++ b/src/libsystemd/sd-bus/sd-bus.c @@ -465,9 +465,9 @@ static int synthesize_connected_signal(sd_bus *bus) { /* If enabled, synthesizes a local "Connected" signal mirroring the local "Disconnected" signal. This is called * whenever we fully established a connection, i.e. after the authorization phase, and after receiving the - * Hello() reply. Or in other words, whenver we enter BUS_RUNNING state. + * Hello() reply. Or in other words, whenever we enter BUS_RUNNING state. * - * This is useful so that clients can start doing stuff whenver the connection is fully established in a way + * This is useful so that clients can start doing stuff whenever the connection is fully established in a way * that works independently from whether we connected to a full bus or just a direct connection. */ if (!bus->connected_signal) @@ -1204,7 +1204,7 @@ _public_ int sd_bus_open_with_description(sd_bus **ret, const char *description) assert_return(ret, -EINVAL); /* Let's connect to the starter bus if it is set, and - * otherwise to the bus that is appropropriate for the scope + * otherwise to the bus that is appropriate for the scope * we are running in */ e = secure_getenv("DBUS_STARTER_BUS_TYPE"); @@ -3869,7 +3869,7 @@ _public_ int sd_bus_path_decode_many(const char *path, const char *path_template * For each matched label, the *decoded* label is stored in the * passed output argument, and the caller is responsible to free * it. Note that the output arguments are only modified if the - * actualy path matched the template. Otherwise, they're left + * actually path matched the template. Otherwise, they're left * untouched. * * This function returns <0 on error, 0 if the path does not match the diff --git a/src/libsystemd/sd-bus/test-bus-queue-ref-cycle.c b/src/libsystemd/sd-bus/test-bus-queue-ref-cycle.c index f6506fb93f..17598f3d63 100644 --- a/src/libsystemd/sd-bus/test-bus-queue-ref-cycle.c +++ b/src/libsystemd/sd-bus/test-bus-queue-ref-cycle.c @@ -24,7 +24,7 @@ static int test_ref_unref(void) { m = sd_bus_message_unref(m); bus = sd_bus_unref(bus); - /* We should have a memory leak now on <= v240. Let's do this again, but destory in the opposite + /* We should have a memory leak now on <= v240. Let's do this again, but destroy in the opposite * order. On v240 that too should be a leak. */ r = sd_bus_open_system(&bus); |