diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2021-10-14 01:05:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 01:05:44 +0200 |
commit | d55517702115bc96261a0270d7c1c3965b39e6a4 (patch) | |
tree | e3c180272cc24117c6afcc5dc57bcf66d4c5738d /lib/filter.c | |
parent | Merge pull request #9761 from mjstapp/fix_topo_debug_cli (diff) | |
parent | lib: fix spelling nits in more lib files (diff) | |
download | frr-d55517702115bc96261a0270d7c1c3965b39e6a4.tar.xz frr-d55517702115bc96261a0270d7c1c3965b39e6a4.zip |
Merge pull request #9751 from ewlumpkin/comment_spelling_fixes
lib: fix spelling nits in more lib files' comments
Diffstat (limited to 'lib/filter.c')
-rw-r--r-- | lib/filter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/filter.c b/lib/filter.c index 90591def8..3a86fbce9 100644 --- a/lib/filter.c +++ b/lib/filter.c @@ -192,7 +192,7 @@ void access_list_delete(struct access_list *access) access_list_free(access); } -/* Insert new access list to list of access_list. Each acceess_list +/* Insert new access list to list of access_list. Each access_list is sorted by the name. */ static struct access_list *access_list_insert(afi_t afi, const char *name) { @@ -387,7 +387,7 @@ void access_list_filter_add(struct access_list *access, struct filter *replace; struct filter *point; - /* Automatic asignment of seq no. */ + /* Automatic assignment of seq no. */ if (filter->seq == -1) filter->seq = filter_new_seq_get(access); |