mirror of
https://github.com/systemd/systemd.git
synced 2025-02-23 13:57:33 +03:00
Drop parentheses in two places
This commit is contained in:
parent
96ace31dcd
commit
fc549b9605
@ -68,8 +68,8 @@
|
|||||||
link-local networking).</para></listitem>
|
link-local networking).</para></listitem>
|
||||||
|
|
||||||
<listitem><para>The glibc
|
<listitem><para>The glibc
|
||||||
<citerefentry><refentrytitle>getaddrinfo</refentrytitle><manvolnum>3</manvolnum></citerefentry> API (as defined
|
<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,
|
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
|
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
|
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
|
validation status information however, and is synchronous only. This API is backed by the glibc Name Service
|
||||||
|
@ -803,9 +803,8 @@ char **strv_reverse(char **l) {
|
|||||||
if (n <= 1)
|
if (n <= 1)
|
||||||
return l;
|
return l;
|
||||||
|
|
||||||
for (i = 0; i < n / 2; i++) {
|
for (i = 0; i < n / 2; i++)
|
||||||
SWAP_TWO(l[i], l[n-1-i]);
|
SWAP_TWO(l[i], l[n-1-i]);
|
||||||
}
|
|
||||||
|
|
||||||
return l;
|
return l;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user