From 462ea14a8d030844c487cc16eb98799af21e55ea Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Mon, 11 Feb 2019 17:53:49 +0200 Subject: [PATCH] vtysh: Fix typo in function name Signed-off-by: Donatas Abraitis --- vtysh/vtysh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 340c9be601..41fd6ed7d6 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -3330,7 +3330,7 @@ static void vtysh_client_sorted_insert(struct vtysh_client *head_client, #define MAXIMUM_INSTANCES 10 -static void vtysh_update_all_insances(struct vtysh_client *head_client) +static void vtysh_update_all_instances(struct vtysh_client *head_client) { struct vtysh_client *client; DIR *dir; @@ -3373,7 +3373,7 @@ static int vtysh_connect_all_instances(struct vtysh_client *head_client) struct vtysh_client *client; int rc = 0; - vtysh_update_all_insances(head_client); + vtysh_update_all_instances(head_client); client = head_client->next; while (client) { -- 2.39.5