1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-26 08:55:18 +03:00

tree-wide: fix typo

(cherry picked from commit a17e54783a)
This commit is contained in:
Yu Watanabe 2022-03-07 15:32:22 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent 51089e007f
commit 39f2ccdb37
2 changed files with 2 additions and 2 deletions

View File

@ -561,7 +561,7 @@
<varlistentry>
<term><constant>SD_BUS_VTABLE_CAPABILITY(<replaceable>capability</replaceable>)</constant></term>
<listitem><para>Access to this vtable entry will be allowed if the calling proccess has the
<listitem><para>Access to this vtable entry will be allowed if the calling process has the
capability <replaceable>capability</replaceable>, as described in
<citerefentry><refentrytitle>sd_bus_query_sender_privilege</refentrytitle><manvolnum>3</manvolnum></citerefentry>.
If used for <constant>SD_BUS_VTABLE_START()</constant>, provides a default for all entries in the

View File

@ -373,7 +373,7 @@ possible_common_cc_flags = [
'-Wno-string-plus-int', # clang
]
# Disable -Wmaybe-unitialized when compiling with -Os/-O1/-O3/etc. There are
# Disable -Wmaybe-uninitialized when compiling with -Os/-O1/-O3/etc. There are
# too many false positives with gcc >= 8. Effectively, we only test with -O0
# and -O2; this should be enough to catch most important cases without too much
# busywork. See https://github.com/systemd/systemd/pull/19226.