From: Jo-Philipp Wich Date: Fri, 5 Apr 2013 10:24:13 +0000 (+0200) Subject: Fix system_resolve_rt_table() stub in system-dummy.c X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=68bb041b6ce4cde28186557262bee7b766c77b2d;hp=abba48ec2eac7965adac2c590d4d233c03b27c72;ds=sidebyside Fix system_resolve_rt_table() stub in system-dummy.c --- diff --git a/system-dummy.c b/system-dummy.c index d692b79..95546bf 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -191,9 +191,10 @@ int system_flush_routes(void) return 0; } -int system_resolve_rt_table(const char *name, struct device_route *route) +bool system_resolve_rt_table(const char *name, unsigned int *id) { - return 0; + *id = 0; + return true; } int system_add_iprule(struct iprule *rule)