rpcd-mod-luci: fix syntax error

Fixes: 45a398e1ed ("rpcd-mod-luci: avoid PTR requests for IPv6 link-local and ULA addrs")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit af4352c07e)
This commit is contained in:
Jo-Philipp Wich 2021-09-22 12:42:54 +02:00
parent ba3f8f84ad
commit f20b82f57f

View file

@ -1726,7 +1726,7 @@ rpc_luci_get_host_hints_rrdns(struct reply_context *rctx)
avl_for_each_element(&hint->ip6addrs, addr, avl) {
if (!IN6_IS_ADDR_UNSPECIFIED(&addr->addr.in6) &&
!IN6_IS_ADDR_LINKLOCAL(&addr->addr.in6) &&
!IN6_IS_ADDR_ULA(&addr>addr.in6)) {
!IN6_IS_ADDR_ULA(&addr->addr.in6)) {
inet_ntop(AF_INET6, &addr->addr.in6, buf, sizeof(buf));
blobmsg_add_string(&req, NULL, buf);
n++;