diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2021-03-29 20:26:28 +0200 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2021-03-29 21:54:03 +0200 |
commit | 18abe2b91ef41d4c6ccdd19ac505f6705db64f87 (patch) | |
tree | 007ab35f8314d34ea06c245c2a84c47094d8c2f5 /lib/filter.h | |
parent | Merge pull request #8326 from idryzhov/hide-show-config (diff) | |
download | frr-18abe2b91ef41d4c6ccdd19ac505f6705db64f87.tar.xz frr-18abe2b91ef41d4c6ccdd19ac505f6705db64f87.zip |
lib: fix checking for duplicated access-list entries
Restore the behavior that was before the NB conversion.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'lib/filter.h')
-rw-r--r-- | lib/filter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/filter.h b/lib/filter.h index 091a5197f..337639c4b 100644 --- a/lib/filter.h +++ b/lib/filter.h @@ -182,6 +182,9 @@ struct acl_dup_args { /** Access list name. */ const char *ada_name; + /** Entry action. */ + const char *ada_action; + #define ADA_MAX_VALUES 4 /** Entry XPath for value. */ const char *ada_xpath[ADA_MAX_VALUES]; |