1
0
mirror of https://github.com/systemd/systemd synced 2024-07-08 20:15:55 +00:00

tree-wide: fix typo

This commit is contained in:
Yu Watanabe 2022-05-14 04:58:47 +09:00
parent 027301b434
commit 3881fd406b
3 changed files with 3 additions and 3 deletions

2
TODO
View File

@ -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

View File

@ -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

View File

@ -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);