diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-07-31 19:31:09 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-07-31 20:12:55 -0400 | 
| commit | 03c20031fd18ebe871fb5fc572886f7b6eaf706d (patch) | |
| tree | 097e0be820dd8a102e4cc7e91dccacf9f2bf985e /ripd/rip_memory.c | |
| parent | 0329ff96a95c1474f03fa755a2a4d311ae660a03 (diff) | |
ripd: Use memory management for interface commands in RIP
During code inspection it was noticed that rip is not fully
using FRR memory code as it should.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ripd/rip_memory.c')
| -rw-r--r-- | ripd/rip_memory.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/ripd/rip_memory.c b/ripd/rip_memory.c index 4cdd3df048..1852410743 100644 --- a/ripd/rip_memory.c +++ b/ripd/rip_memory.c @@ -29,6 +29,7 @@ DEFINE_MGROUP(RIPD, "ripd")  DEFINE_MTYPE(RIPD, RIP, "RIP structure")  DEFINE_MTYPE(RIPD, RIP_INFO, "RIP route info")  DEFINE_MTYPE(RIPD, RIP_INTERFACE, "RIP interface") +DEFINE_MTYPE(RIPD, RIP_INTERFACE_STRING, "RIP Interface String")  DEFINE_MTYPE(RIPD, RIP_PEER, "RIP peer")  DEFINE_MTYPE(RIPD, RIP_OFFSET_LIST, "RIP offset list")  DEFINE_MTYPE(RIPD, RIP_DISTANCE, "RIP distance")  | 
