]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
nss-myhostname: fix inverted condition in
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 8 Feb 2023 20:55:42 +0000 (05:55 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 8 Feb 2023 20:55:51 +0000 (05:55 +0900)
Fixes a bug introduced by db50d326a46beca3cc24b6354b6e1b3591902d45.

src/nss-myhostname/nss-myhostname.c

index 3af1d2f0c13fbac994ab6d233b33392e18ae6db7..1b340e11d467ddd813a4847d1377828445002465 100644 (file)
@@ -461,7 +461,7 @@ enum nss_status _nss_myhostname_gethostbyaddr2_r(
         } else {
                 assert(af == AF_INET6);
 
-                if (socket_ipv6_is_enabled())
+                if (!socket_ipv6_is_enabled())
                         goto not_found;
 
                 if (memcmp(addr, LOCALADDRESS_IPV6, 16) == 0) {