]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Drop parentheses in two places 3746/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 28 Jun 2016 19:12:01 +0000 (15:12 -0400)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sun, 17 Jul 2016 23:58:07 +0000 (19:58 -0400)
man/systemd-resolved.service.xml
src/basic/strv.c

index 0df037ba69ffad93633dca1a22c2959161cd1d6e..141b06e374e8af5e25a7081d1c8f9412dce8f1a7 100644 (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
index e0e2d1ebbeaa483d7c3ad749ef887e5538d6e4cd..db315ac10ade2ec7dcbb716b61419f8c9902113a 100644 (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;
 }