[source] dnsmasq: fix swapped ubus args mac and ip
LEDE Commits
lede-commits at lists.infradead.org
Mon Nov 13 14:30:42 PST 2017
blogic pushed a commit to source.git, branch master:
https://git.lede-project.org/17a4eacd0c9ba5554b7d3c6e201b5b047e5187ca
commit 17a4eacd0c9ba5554b7d3c6e201b5b047e5187ca
Author: Jaroslav Safka <devel at safka.org>
AuthorDate: Mon Nov 13 23:02:46 2017 +0100
dnsmasq: fix swapped ubus args mac and ip
Fix swapped arguments "mac" and "ip" when calling function
"ubus_event_bcast".
Signed-off-by: Jaroslav Safka <devel at safka.org>
---
package/network/services/dnsmasq/patches/240-ubus.patch | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/network/services/dnsmasq/patches/240-ubus.patch b/package/network/services/dnsmasq/patches/240-ubus.patch
index 2d37b5d..0e0b1dd 100644
--- a/package/network/services/dnsmasq/patches/240-ubus.patch
+++ b/package/network/services/dnsmasq/patches/240-ubus.patch
@@ -118,9 +118,9 @@
string ? string : "",
err ? err : "");
+ if (!strcmp(type, "DHCPACK"))
-+ ubus_event_bcast("dhcp.ack", addr ? inet_ntoa(a) : NULL, daemon->namebuff, string ? string : NULL);
++ ubus_event_bcast("dhcp.ack", daemon->namebuff, addr ? inet_ntoa(a) : NULL, string ? string : NULL);
+ else if (!strcmp(type, "DHCPRELEASE"))
-+ ubus_event_bcast("dhcp.release", addr ? inet_ntoa(a) : NULL, daemon->namebuff, string ? string : NULL);
++ ubus_event_bcast("dhcp.release", daemon->namebuff, addr ? inet_ntoa(a) : NULL, string ? string : NULL);
}
static void log_options(unsigned char *start, u32 xid)
More information about the lede-commits
mailing list