1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-27 01:55:32 +03:00

Drop parentheses in two places

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2016-06-28 15:12:01 -04:00
parent 96ace31dcd
commit fc549b9605
2 changed files with 3 additions and 4 deletions

View File

@ -68,8 +68,8 @@
link-local networking).</para></listitem>
<listitem><para>The glibc
<citerefentry><refentrytitle>getaddrinfo</refentrytitle><manvolnum>3</manvolnum></citerefentry> API (as defined
by <ulink url="https://tools.ietf.org/html/rfc3493">RFC3493</ulink>) and its related resolver functions,
<citerefentry><refentrytitle>getaddrinfo</refentrytitle><manvolnum>3</manvolnum></citerefentry> API as defined
by <ulink url="https://tools.ietf.org/html/rfc3493">RFC3493</ulink> and its related resolver functions,
including <citerefentry><refentrytitle>gethostbyname</refentrytitle><manvolnum>3</manvolnum></citerefentry>. This
API is widely supported, including beyond the Linux platform. In its current form it does not expose DNSSEC
validation status information however, and is synchronous only. This API is backed by the glibc Name Service

View File

@ -803,9 +803,8 @@ char **strv_reverse(char **l) {
if (n <= 1)
return l;
for (i = 0; i < n / 2; i++) {
for (i = 0; i < n / 2; i++)
SWAP_TWO(l[i], l[n-1-i]);
}
return l;
}