From 3881fd406b13746336c6c654fd2f68261161fd8a Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 14 May 2022 04:58:47 +0900 Subject: [PATCH] tree-wide: fix typo --- TODO | 2 +- src/core/device.c | 2 +- src/network/networkd-link.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/TODO b/TODO index 4822cef72f..01b119fd7e 100644 --- a/TODO +++ b/TODO @@ -87,7 +87,7 @@ Features: are not directly belonging to the user's UID. Goal: we shouldn't place more privileged dirs inside of unprivileged dirs, and thus containers really should not be placed inside of traditional UNIX home dirs (which are owned by - users themselves) but somewher else, that is separate, but still close + users themselves) but somewhere else, that is separate, but still close by. Inform user code about path to this companion dir via env var, so that container managers find it. the ~/.identity file is also a candidate for a file to move there, since it is managed by privileged code (i.e. homed) and diff --git a/src/core/device.c b/src/core/device.c index 1a4563a3d9..4c261ec554 100644 --- a/src/core/device.c +++ b/src/core/device.c @@ -187,7 +187,7 @@ static int device_coldplug(Unit *u) { * Also, there is no deserialized device. Device units are (a) generated based on dependencies of * other units, or (b) generated when uevents are received. * - * - On switch-root, the udev databse may be cleared, except for devices with sticky bit, i.e. + * - On switch-root, the udev database may be cleared, except for devices with sticky bit, i.e. * OPTIONS="db_persist". Hence, almost no devices are enumerated in the step 2. However, in general, * we have several serialized devices. So, DEVICE_FOUND_UDEV bit in the deserialized_found must be * ignored, as udev rules in initramfs and the main system are often different. If the deserialized diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c index 73850cdea5..d697210bdc 100644 --- a/src/network/networkd-link.c +++ b/src/network/networkd-link.c @@ -2037,7 +2037,7 @@ static int link_update_master(Link *link, sd_netlink_message *message) { if (link->master_ifindex == 0) log_link_debug(link, "Joined to master interface: %i", master_ifindex); else if (master_ifindex == 0) - log_link_debug(link, "Leaved from master interface: %i", link->master_ifindex); + log_link_debug(link, "Left from master interface: %i", link->master_ifindex); else log_link_debug(link, "Master interface is changed: %i → %i", link->master_ifindex, master_ifindex);