diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2019-02-11 17:53:49 +0200 |
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2019-02-11 18:38:35 +0200 |
| commit | 462ea14a8d030844c487cc16eb98799af21e55ea (patch) | |
| tree | 8501523968d70d3d802f2c76c1381b6641120154 | |
| parent | fb85ce1b812d892a07a4f942b4cfade9442b9a2b (diff) | |
vtysh: Fix typo in function name
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
| -rw-r--r-- | vtysh/vtysh.c | 4 |
1 files 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) { |
