Repository : ssh://git@diktynna/batctl
On branch : master
>---------------------------------------------------------------
commit 950f86a366a1c5b3b2136bbec891578bb3a090d5
Author: Linus L��ssing <linus.luessing(a)c0d3.blue>
Date: Mon Jun 1 22:42:03 2020 +0200
batctl: Change/fix a throughput override function name
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(a)c0d3.blue>
Signed-off-by: Sven Eckelmann <sven(a)narfation.org>
>---------------------------------------------------------------
950f86a366a1c5b3b2136bbec891578bb3a090d5
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)