mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +03:00
tree-wide: codespell fixes
Another batch of codespell fixes as reported by Fossies.org
This commit is contained in:
parent
639375e0b6
commit
15dd451535
2
TODO
2
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
|
||||
|
@ -53,7 +53,7 @@
|
||||
<literal>cifs</literal>. For details about these options, see
|
||||
<citerefentry><refentrytitle>homectl</refentrytitle><manvolnum>1</manvolnum></citerefentry>. If not
|
||||
configured or assigned the empty string, the default storage is automatically determined: if not
|
||||
running in a container enviroment and <filename>/home/</filename> is not itself encrypted, defaults
|
||||
running in a container environment and <filename>/home/</filename> is not itself encrypted, defaults
|
||||
to <literal>luks</literal>. Otherwise defaults to <literal>subvolume</literal> if
|
||||
<filename>/home/</filename> is on a btrfs file system, and <literal>directory</literal>
|
||||
otherwise. Note that the storage selected on the <command>homectl</command> command line always takes
|
||||
|
@ -73,12 +73,12 @@
|
||||
|
||||
<para><function>sd_bus_default_flush_close()</function> is similar to
|
||||
<function>sd_bus_flush_close_unref</function>, 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
|
||||
<citerefentry><refentrytitle>sd_bus_default</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
|
||||
<citerefentry><refentrytitle>sd_bus_default_user</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
|
||||
<citerefentry><refentrytitle>sd_bus_default_system</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
|
||||
and similar calls. <function>sd_bus_default_flush_close()</function> is particularly useful to
|
||||
clean up any busses opened using those calls before the program exits.</para>
|
||||
clean up any buses opened using those calls before the program exits.</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1>
|
||||
|
@ -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! */
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user