From: Felix Fietkau Date: Mon, 18 Jun 2012 21:41:17 +0000 (+0200) Subject: add support for using / in route/route6 config sections X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=a667ba53a212dd0bd0a09467036c5db9dfe8bfbb add support for using / in route/route6 config sections --- diff --git a/interface-ip.c b/interface-ip.c index d8d8606..b097c1f 100644 --- a/interface-ip.c +++ b/interface-ip.c @@ -220,7 +220,7 @@ interface_ip_add_route(struct interface *iface, struct blob_attr *attr, bool v6) } if ((cur = tb[ROUTE_TARGET]) != NULL) { - if (!inet_pton(af, blobmsg_data(cur), &route->addr)) { + if (!parse_ip_and_netmask(af, blobmsg_data(cur), &route->addr, &route->mask)) { DPRINTF("Failed to parse route target: %s\n", (char *) blobmsg_data(cur)); goto error; }