diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-10-02 18:34:03 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-10-09 14:26:30 -0400 |
| commit | 9b6d8fcf29cee8a748daedf4ba9ce8704fef1a02 (patch) | |
| tree | a0ebb5bb87b1c822b8a4f7f6f3843b237cfa5871 /bgpd/bgp_damp.h | |
| parent | 18ee8310313d2891f6e023e751e2212856e8e8cc (diff) | |
bgpd: Convert binfo to path
Convert the binfo variable to path.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_damp.h')
| -rw-r--r-- | bgpd/bgp_damp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bgpd/bgp_damp.h b/bgpd/bgp_damp.h index d28d2e13f0..18bf561c47 100644 --- a/bgpd/bgp_damp.h +++ b/bgpd/bgp_damp.h @@ -44,7 +44,7 @@ struct bgp_damp_info { time_t suppress_time; /* Back reference to bgp_path_info. */ - struct bgp_path_info *binfo; + struct bgp_path_info *path; /* Back reference to bgp_node. */ struct bgp_node *rn; @@ -142,7 +142,7 @@ extern void bgp_config_write_damp(struct vty *); extern void bgp_damp_info_vty(struct vty *vty, struct bgp_path_info *path, json_object *json_path); extern const char *bgp_damp_reuse_time_vty(struct vty *vty, - struct bgp_path_info *binfo, + struct bgp_path_info *path, char *timebuf, size_t len, bool use_json, json_object *json); extern int bgp_show_dampening_parameters(struct vty *vty, afi_t, safi_t); |
