batctl: Change/fix a throughput override function name

Message ID 20200601204203.5505-1-linus.luessing@c0d3.blue (mailing list archive)
State Accepted, archived
Delegated to: Simon Wunderlich
Headers
Series batctl: Change/fix a throughput override function name |

Commit Message

Linus Lüssing June 1, 2020, 8:42 p.m. UTC
  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(-)
  

Patch

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)