From bdbb61f69ff9f0d63f204a374c49ed3b2853ff5d Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Wed, 18 Aug 2021 19:14:31 +0900 Subject: [PATCH] tree-wide: fix typo --- man/nss-myhostname.xml | 2 +- man/nss-resolve.xml | 2 +- .../cryptsetup-tokens/cryptsetup-token-systemd-tpm2.c | 4 ++-- src/import/pull.c | 2 +- src/shared/rm-rf.c | 6 +++--- src/shared/tpm2-util.c | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/man/nss-myhostname.xml b/man/nss-myhostname.xml index f9d0ff43f43..b6544cf65d5 100644 --- a/man/nss-myhostname.xml +++ b/man/nss-myhostname.xml @@ -80,7 +80,7 @@ /etc/hosts. Please keep in mind that nss-myhostname (and nss-resolve) also resolve - in the other direction — from locally attached IP adresses to + in the other direction — from locally attached IP addresses to hostnames. If you rely on that lookup being provided by DNS, you might want to order things differently. diff --git a/man/nss-resolve.xml b/man/nss-resolve.xml index 4f9e1f9c5a5..81f9fdae8c3 100644 --- a/man/nss-resolve.xml +++ b/man/nss-resolve.xml @@ -54,7 +54,7 @@ systemd-resolved is not running. Please keep in mind that nss-myhostname (and nss-resolve) also resolve - in the other direction — from locally attached IP adresses to + in the other direction — from locally attached IP addresses to hostnames. If you rely on that lookup being provided by DNS, you might want to order things differently. diff --git a/src/cryptsetup/cryptsetup-tokens/cryptsetup-token-systemd-tpm2.c b/src/cryptsetup/cryptsetup-tokens/cryptsetup-token-systemd-tpm2.c index c7819b1a8d0..2daa55c457e 100644 --- a/src/cryptsetup/cryptsetup-tokens/cryptsetup-token-systemd-tpm2.c +++ b/src/cryptsetup/cryptsetup-tokens/cryptsetup-token-systemd-tpm2.c @@ -43,7 +43,7 @@ static int log_debug_open_error(struct crypt_device *cd, int r) { * (alternatively: name is set to null, flags contains CRYPT_ACTIVATE_ALLOW_UNBOUND_KEY * and token is assigned to at least single keyslot). * - * - if plugin defines validate funtion (see cryptsetup_token_validate below) it must have + * - if plugin defines validate function (see cryptsetup_token_validate below) it must have * passed the check (aka return 0) */ _public_ int cryptsetup_token_open( @@ -110,7 +110,7 @@ _public_ int cryptsetup_token_open( if (r < 0) return log_debug_open_error(cd, r); - /* free'd automaticaly by libcryptsetup */ + /* free'd automatically by libcryptsetup */ *password_len = strlen(base64_encoded); *password = TAKE_PTR(base64_encoded); diff --git a/src/import/pull.c b/src/import/pull.c index f6783f030cb..a903c35aa77 100644 --- a/src/import/pull.c +++ b/src/import/pull.c @@ -349,7 +349,7 @@ static int parse_argv(int argc, char *argv[]) { char *hh; size_t n; - /* If this is not a vaid verification mode, maybe it's a literally specified + /* If this is not a valid verification mode, maybe it's a literally specified * SHA256 hash? We can handle that too... */ r = unhexmem(optarg, (size_t) -1, &h, &n); diff --git a/src/shared/rm-rf.c b/src/shared/rm-rf.c index dffb9cf6ee8..d9cd8fb2b2d 100644 --- a/src/shared/rm-rf.c +++ b/src/shared/rm-rf.c @@ -19,9 +19,9 @@ #include "stat-util.h" #include "string-util.h" -/* We treat tmpfs/ramfs + cgroupfs as non-physical file sytems. cgroupfs is similar to tmpfs in a way after - * all: we can create arbitrary directory hierarchies in it, and hence can also use rm_rf() on it to remove - * those again. */ +/* We treat tmpfs/ramfs + cgroupfs as non-physical file systems. cgroupfs is similar to tmpfs in a way + * after all: we can create arbitrary directory hierarchies in it, and hence can also use rm_rf() on it + * to remove those again. */ static bool is_physical_fs(const struct statfs *sfs) { return !is_temporary_fs(sfs) && !is_cgroup_fs(sfs); } diff --git a/src/shared/tpm2-util.c b/src/shared/tpm2-util.c index 5cb6563b434..793a54a449d 100644 --- a/src/shared/tpm2-util.c +++ b/src/shared/tpm2-util.c @@ -353,7 +353,7 @@ static int tpm2_get_best_pcr_bank( assert_cc(TPM2_PCRS_MAX % 8 == 0); - /* It's not enought to check how many PCRs there are, we also need to check that the 24 are + /* It's not enough to check how many PCRs there are, we also need to check that the 24 are * enabled for this bank. Otherwise this TPM doesn't qualify. */ for (size_t j = 0; j < TPM2_PCRS_MAX/8; j++) if (pcap->data.assignedPCR.pcrSelections[i].pcrSelect[j] != 0xFF) { @@ -411,7 +411,7 @@ static int tpm2_make_pcr_session( }; TPML_PCR_SELECTION pcr_selection = { .count = 1, - .pcrSelections[0].hash = TPM2_ALG_SHA256, /* overriden below, depending on TPM2 capabilities */ + .pcrSelections[0].hash = TPM2_ALG_SHA256, /* overridden below, depending on TPM2 capabilities */ .pcrSelections[0].sizeofSelect = 3, .pcrSelections[0].pcrSelect[0] = pcr_mask & 0xFF, .pcrSelections[0].pcrSelect[1] = (pcr_mask >> 8) & 0xFF,