diff options
| author | Pooja Jagadeesh Doijode <pdoijode@nvidia.com> | 2024-05-17 12:37:24 -0700 | 
|---|---|---|
| committer | Pooja Jagadeesh Doijode <pdoijode@nvidia.com> | 2024-05-24 11:25:16 -0700 | 
| commit | a7c3317abafa011c64c78ce35017724d691e0ae0 (patch) | |
| tree | 13e7e46d118c8c4f783ac7d73597c713eda3b33e /bgpd/bgp_clist.h | |
| parent | 773a45ef29e0ab128492f2ed8a9bb014f5d75b70 (diff) | |
bgpd: Removed unused COMMUNITY_LIST_ERR_CANT_FIND_LIST
Removed the unused COMMUNITY_LIST_ERR_CANT_FIND_LIST
Ticket:#3900813
Testing Done: precommit
Signed-off-by: Pooja Jagadeesh Doijode <pdoijode@nvidia.com>
Diffstat (limited to 'bgpd/bgp_clist.h')
| -rw-r--r-- | bgpd/bgp_clist.h | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/bgpd/bgp_clist.h b/bgpd/bgp_clist.h index 3395483054..29bd880c93 100644 --- a/bgpd/bgp_clist.h +++ b/bgpd/bgp_clist.h @@ -109,11 +109,9 @@ struct community_list_handler {  };  /* Error code of community-list.  */ -#define COMMUNITY_LIST_ERR_CANT_FIND_LIST        -1 -#define COMMUNITY_LIST_ERR_MALFORMED_VAL         -2 -#define COMMUNITY_LIST_ERR_STANDARD_CONFLICT     -3 -#define COMMUNITY_LIST_ERR_EXPANDED_CONFLICT     -4 - +#define COMMUNITY_LIST_ERR_MALFORMED_VAL     -1 +#define COMMUNITY_LIST_ERR_STANDARD_CONFLICT -2 +#define COMMUNITY_LIST_ERR_EXPANDED_CONFLICT -3  /* Handler.  */  extern struct community_list_handler *bgp_clist;  | 
