X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=src%2Fubus.c;h=14d0c42504823f014f781f3e27e0f0c92c9ca949;hb=f0e354befd6f787c1ed8ebc1ea514e9195f54433;hp=30f7e935fd2bf6c52331f5ecc26fa46fdaf5e96e;hpb=1a313f9052e315571f42e9888d7bc8e443c5bb56;p=project%2Fodhcpd.git diff --git a/src/ubus.c b/src/ubus.c index 30f7e93..14d0c42 100644 --- a/src/ubus.c +++ b/src/ubus.c @@ -27,7 +27,7 @@ static int handle_dhcpv4_leases(struct ubus_context *ctx, _unused struct ubus_ob a = blobmsg_open_table(&b, "device"); list_for_each_entry(iface, &interfaces, head) { - if (iface->dhcpv4 != RELAYD_SERVER || iface->dhcpv4_assignments.next == NULL) + if (iface->dhcpv4 != MODE_SERVER || iface->dhcpv4_assignments.next == NULL) continue; void *i = blobmsg_open_table(&b, iface->ifname); @@ -106,7 +106,7 @@ static int handle_dhcpv6_leases(_unused struct ubus_context *ctx, _unused struct a = blobmsg_open_table(&b, "device"); list_for_each_entry(iface, &interfaces, head) { - if (iface->dhcpv6 != RELAYD_SERVER || iface->ia_assignments.next == NULL) + if (iface->dhcpv6 != MODE_SERVER || iface->ia_assignments.next == NULL) continue; void *i = blobmsg_open_table(&b, iface->ifname);