Fixes a copy and paste error in one of the function names of the throughput override comand.
Fixes: e5e6560df828 ("batctl: Add throughput_override setting command") Signed-off-by: Linus Lüssing linus.luessing@c0d3.blue --- throughput_override.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/throughput_override.c b/throughput_override.c index e9f0346..13b5dce 100644 --- a/throughput_override.c +++ b/throughput_override.c @@ -66,7 +66,7 @@ static int print_throughput_override(struct nl_msg *msg, void *arg) return NL_STOP; }
-static int get_attrs_elp_isolation(struct nl_msg *msg, void *arg) +static int get_attrs_throughput_override(struct nl_msg *msg, void *arg) { struct state *state = arg;
@@ -78,7 +78,8 @@ static int get_attrs_elp_isolation(struct nl_msg *msg, void *arg) static int get_throughput_override(struct state *state) { return sys_simple_nlquery(state, BATADV_CMD_GET_HARDIF, - get_attrs_elp_isolation, print_throughput_override); + get_attrs_throughput_override, + print_throughput_override); }
static int set_attrs_throughput_override(struct nl_msg *msg, void *arg)
b.a.t.m.a.n@lists.open-mesh.org