diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-06-11 19:34:11 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-06-11 19:34:39 +0200 |
commit | 7b88bf087f9963b70f3a2d547d68e436e15e8753 (patch) | |
tree | 279886263f79cc1ee6cff0dd12be382aff7188b4 | |
parent | man: document that separate /usr/local/ must not be used for config (diff) | |
download | systemd-7b88bf087f9963b70f3a2d547d68e436e15e8753.tar.xz systemd-7b88bf087f9963b70f3a2d547d68e436e15e8753.zip |
shared: fix typo: dito -> ditto
Follow-up for bc9e5a4c67f5fff536d122118e16a53dfb592acd and
3572d3df8f822d4cf1601428401a837f723771cf.
-rw-r--r-- | src/shared/bus-wait-for-units.h | 2 | ||||
-rw-r--r-- | src/shared/fstab-util.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/shared/bus-wait-for-units.h b/src/shared/bus-wait-for-units.h index 09c4f18906..a4a4dc42a5 100644 --- a/src/shared/bus-wait-for-units.h +++ b/src/shared/bus-wait-for-units.h @@ -8,7 +8,7 @@ typedef struct BusWaitForUnits BusWaitForUnits; typedef enum BusWaitForUnitsState { BUS_WAIT_SUCCESS, /* Nothing to wait for anymore and nothing failed */ - BUS_WAIT_FAILURE, /* dito, but something failed */ + BUS_WAIT_FAILURE, /* ditto, but something failed */ BUS_WAIT_RUNNING, /* Still something to wait for */ _BUS_WAIT_FOR_UNITS_STATE_MAX, _BUS_WAIT_FOR_UNITS_STATE_INVALID = -EINVAL, diff --git a/src/shared/fstab-util.c b/src/shared/fstab-util.c index eac5bb8d3b..60ceff50e5 100644 --- a/src/shared/fstab-util.c +++ b/src/shared/fstab-util.c @@ -74,8 +74,8 @@ bool fstab_is_extrinsic(const char *mount, const char *opts) { "/run/initramfs", /* This should stay around from before we boot until after we shutdown */ "/run/nextroot", /* Similar (though might be updated from the host) */ "/proc", /* All of this is API VFS */ - "/sys", /* … dito … */ - "/dev")) /* … dito … */ + "/sys", /* … ditto … */ + "/dev")) /* … ditto … */ return true; /* If this is an initrd mount, and we are not in the initrd, then leave |