projects
/
project
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba3f8f8
)
rpcd-mod-luci: fix syntax error
author
Jo-Philipp Wich
<jo@mein.io>
Wed, 22 Sep 2021 10:42:54 +0000
(12:42 +0200)
committer
Jo-Philipp Wich
<jo@mein.io>
Tue, 12 Oct 2021 21:03:49 +0000
(23:03 +0200)
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
af4352c07ef33ebb06a0c7f684f3f753b9c23f4f
)
libs/rpcd-mod-luci/src/luci.c
patch
|
blob
|
history
diff --git
a/libs/rpcd-mod-luci/src/luci.c
b/libs/rpcd-mod-luci/src/luci.c
index 53ffff4fd243adac6c9f615f03d7484853b3fef3..4022cec9bac0d6145dea053463f10ce8fbae425e 100644
(file)
--- a/
libs/rpcd-mod-luci/src/luci.c
+++ b/
libs/rpcd-mod-luci/src/luci.c
@@
-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++;