diff options
| author | Nigel Kukard <nkukard@lbsd.net> | 2017-08-30 09:29:57 +0000 |
|---|---|---|
| committer | Nigel Kukard <nkukard@lbsd.net> | 2017-08-31 23:39:53 +0000 |
| commit | ceead39c09a76b5e7b918b77ba9d5e8ae0ba1330 (patch) | |
| tree | fe429f00a86c219e3e03d26ba9205e12b3b217c9 | |
| parent | 770817b4080aff44689d5f0a0006a5a94e5dd7be (diff) | |
bgpd: Cleaned up some comments
Signed-off-by: Nigel Kukard <nkukard@lbsd.net>
| -rw-r--r-- | bgpd/bgp_clist.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/bgpd/bgp_clist.c b/bgpd/bgp_clist.c index ac7a09cde7..7104f17e5e 100644 --- a/bgpd/bgp_clist.c +++ b/bgpd/bgp_clist.c @@ -704,8 +704,7 @@ struct community *community_list_match_delete(struct community *com, /* Loop over each community value and evaluate each against the * community-list. If we need to delete a community value add its index - * to - * com_index_to_delete. + * to com_index_to_delete. */ for (i = 0; i < com->size; i++) { val = community_val_get(com, i); @@ -906,8 +905,7 @@ struct lcommunity *lcommunity_list_match_delete(struct lcommunity *lcom, /* Loop over each lcommunity value and evaluate each against the * community-list. If we need to delete a community value add its index - * to - * com_index_to_delete. + * to com_index_to_delete. */ ptr = lcom->val; for (i = 0; i < lcom->size; i++) { |
