diff --git a/TODO b/TODO index ee50452d04..e4182588fe 100644 --- a/TODO +++ b/TODO @@ -81,7 +81,7 @@ Features: * homed: as an extension to the directory+subvolume backend: if located on especially marked fs, then sync down password into LUKS header of that fs, and always verify passwords against it too. Bootstrapping is a problem - though: if noone is logged in (or no other user even exists yet), how do you + though: if no one is logged in (or no other user even exists yet), how do you unlock the volume in order to create the first user and add the first pw. * homed: support new FS_IOC_ADD_ENCRYPTION_KEY ioctl for setting up fscrypt diff --git a/man/homed.conf.xml b/man/homed.conf.xml index 03590feeaa..3e08b1a091 100644 --- a/man/homed.conf.xml +++ b/man/homed.conf.xml @@ -53,7 +53,7 @@ cifs. For details about these options, see homectl1. If not configured or assigned the empty string, the default storage is automatically determined: if not - running in a container enviroment and /home/ is not itself encrypted, defaults + running in a container environment and /home/ is not itself encrypted, defaults to luks. Otherwise defaults to subvolume if /home/ is on a btrfs file system, and directory otherwise. Note that the storage selected on the homectl command line always takes diff --git a/man/sd_bus_close.xml b/man/sd_bus_close.xml index 8d9bdb4858..42db107470 100644 --- a/man/sd_bus_close.xml +++ b/man/sd_bus_close.xml @@ -73,12 +73,12 @@ sd_bus_default_flush_close() is similar to sd_bus_flush_close_unref, but does not take a bus pointer argument and - instead iterates over any of the "default" busses opened by + instead iterates over any of the "default" buses opened by sd_bus_default3, sd_bus_default_user3, sd_bus_default_system3, and similar calls. sd_bus_default_flush_close() is particularly useful to - clean up any busses opened using those calls before the program exits. + clean up any buses opened using those calls before the program exits. diff --git a/src/basic/fs-util.c b/src/basic/fs-util.c index 2c5bfb3263..7bbcb6051e 100644 --- a/src/basic/fs-util.c +++ b/src/basic/fs-util.c @@ -1365,7 +1365,7 @@ int unlinkat_deallocate(int fd, const char *name, UnlinkDeallocateFlags flags) { * it. This isn't going to give you shred(1) semantics, but hopefully should be good enough * for stuff backed by tmpfs at least. * - * Note that we only erase like this if the link count of the file is zero. If it is higer it + * Note that we only erase like this if the link count of the file is zero. If it is higher it * is still linked by someone else and we'll leave it to them to remove it securely * eventually! */ diff --git a/src/journal/journal-send.c b/src/journal/journal-send.c index b07bb592ad..bbb1c206c5 100644 --- a/src/journal/journal-send.c +++ b/src/journal/journal-send.c @@ -94,7 +94,7 @@ _public_ int sd_journal_printv(int priority, const char *format, va_list ap) { if (len >= (int)LONG_LINE_MAX - 8) return -ENOBUFS; - /* Allocate large buffer to accomodate big message */ + /* Allocate large buffer to accommodate big message */ if (len >= LINE_MAX) { int rlen; buffer = alloca(len + 9); @@ -472,7 +472,7 @@ _public_ int sd_journal_printv_with_location(int priority, const char *file, con if (len >= (int)LONG_LINE_MAX - 8) return -ENOBUFS; - /* Allocate large buffer to accomodate big message */ + /* Allocate large buffer to accommodate big message */ if (len >= LINE_MAX) { int rlen; buffer = alloca(len + 9); diff --git a/src/resolve/resolved-manager.h b/src/resolve/resolved-manager.h index cbaef5e49c..6fa5e734bb 100644 --- a/src/resolve/resolved-manager.h +++ b/src/resolve/resolved-manager.h @@ -167,7 +167,7 @@ void manager_verify_all(Manager *m); DEFINE_TRIVIAL_CLEANUP_FUNC(Manager*, manager_free); -/* For some reason we need some extra cmsg space on some kernels/archs. One of those days we ned to figure out why */ +/* For some reason we need some extra cmsg space on some kernels/archs. One of those days we need to figure out why */ #define EXTRA_CMSG_SPACE 1024 int manager_is_own_hostname(Manager *m, const char *name);