summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2019-11-19 11:21:20 -0500
committerGitHub <noreply@github.com>2019-11-19 11:21:20 -0500
commitf7a24d8d1b536e625f2ba2a3f73e6722f8edfe27 (patch)
tree47bf320476a02270b9bad98078b71bd25955e742
parent9546c1b5108c0e914955924d5b3e746fb225d1de (diff)
parent2bf92084b77060f3b089fc5f0e78a2a3ac8d34f5 (diff)
Merge pull request #5371 from pguibert6WIND/filter_no_form
lib: no filter operations fix on appropriate access-list name
-rw-r--r--lib/filter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/filter.c b/lib/filter.c
index 8c210bd7ad..ed3ffe9c67 100644
--- a/lib/filter.c
+++ b/lib/filter.c
@@ -2147,7 +2147,7 @@ DEFUN (no_access_list_any,
"Specify packets to forward\n"
"Prefix to match. e.g. 10.0.0.0/8\n")
{
- int idx_word = 1;
+ int idx_word = 2;
int idx = 0;
char *seq = NULL;
char *permit_deny = NULL;
@@ -2352,7 +2352,7 @@ DEFUN (no_ipv6_access_list_exact,
{
int idx = 0;
int exact = 0;
- int idx_word = 2;
+ int idx_word = 3;
char *seq = NULL;
char *permit_deny = NULL;
char *prefix = NULL;
@@ -2394,7 +2394,7 @@ DEFUN (no_ipv6_access_list_any,
"Specify packets to forward\n"
"Any prefixi to match\n")
{
- int idx_word = 2;
+ int idx_word = 3;
int idx = 0;
char *seq = NULL;
char *permit_deny = NULL;