diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2020-11-14 17:58:40 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2020-11-14 18:20:21 -0500 | 
| commit | d53e72e5942291eb8c1b81ae6dcb320ef6194ec6 (patch) | |
| tree | 6cc2c20ae46bf859a69e5cafc29c079273bac45b /isisd/isis_redist.h | |
| parent | 6bdbcbf12f2f629b649f22afba39237c8a5da214 (diff) | |
isisd: Free created tables
On redistribution into isis we were creating a table for
handling the redistributed routes, but never cleaning them
up on shutdown properly.  Do so.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'isisd/isis_redist.h')
| -rw-r--r-- | isisd/isis_redist.h | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/isisd/isis_redist.h b/isisd/isis_redist.h index 0d2dc6a803..afce922240 100644 --- a/isisd/isis_redist.h +++ b/isisd/isis_redist.h @@ -62,4 +62,5 @@ void isis_redist_set(struct isis_area *area, int level, int family, int type,  		     uint32_t metric, const char *routemap, int originate_type);  void isis_redist_unset(struct isis_area *area, int level, int family, int type); +void isis_redist_free(struct isis *isis);  #endif  | 
