From: Yu Watanabe Date: Mon, 28 Mar 2022 16:21:51 +0000 (+0900) Subject: fix typo X-Git-Tag: v251-rc1~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=288bd406200bb32f288ea076c844c9b28fbe15ed;p=thirdparty%2Fsystemd.git fix typo --- diff --git a/TODO b/TODO index 4b18aafd653..6f80e576487 100644 --- a/TODO +++ b/TODO @@ -1352,7 +1352,7 @@ Features: - on login, if we can't fallocate initially, but rebalance is on, then allow login in discard mode, then immediately rebalance, then turn off discard - extend user records with optional "bulk" data. Specifically, a user - avatar/photo or so. This data should be stored along wiht the user record, + avatar/photo or so. This data should be stored along with the user record, but probably shouldn't be part of the record itself, since it might be large. diff --git a/src/core/manager.c b/src/core/manager.c index 69717e5ba6e..d10fb58a619 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -2644,7 +2644,7 @@ static int manager_dispatch_sigchld(sd_event_source *source, void *userdata) { * We only do this for the cgroup the PID belonged to. */ (void) unit_check_oom(u1); - /* We check if systemd-oomd perfomed a kill so that we log and notify appropriately */ + /* We check if systemd-oomd performed a kill so that we log and notify appropriately */ (void) unit_check_oomd_kill(u1); manager_invoke_sigchld_event(m, u1, &si); diff --git a/src/libsystemd/sd-journal/journal-file.c b/src/libsystemd/sd-journal/journal-file.c index 15e4f768343..b0f552500c2 100644 --- a/src/libsystemd/sd-journal/journal-file.c +++ b/src/libsystemd/sd-journal/journal-file.c @@ -1939,7 +1939,7 @@ static void schedule_post_change(JournalFile *f) { assert_se(e = sd_event_source_get_event(f->post_change_timer)); - /* If we are aleady going down, post the change immediately. */ + /* If we are already going down, post the change immediately. */ if (IN_SET(sd_event_get_state(e), SD_EVENT_EXITING, SD_EVENT_FINISHED)) goto fail;