summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2023-05-18 11:15:58 -0400
committerDonald Sharp <sharpd@nvidia.com>2023-05-19 21:31:35 -0400
commit425739089250760bc474cfa918692c1edbeb500a (patch)
treeb35f095667064d40b9362d2f783d7334a00d224c
parentdf6eb0bd7be1be55c4b8dbb0153891d011c4e228 (diff)
bfdd: Use shorter memory names so that they fit in vty output
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
-rw-r--r--bfdd/bfdd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfdd/bfdd.c b/bfdd/bfdd.c
index 5fbe2f48f6..95066b97ce 100644
--- a/bfdd/bfdd.c
+++ b/bfdd/bfdd.c
@@ -28,8 +28,8 @@
* FRR related code.
*/
DEFINE_MGROUP(BFDD, "Bidirectional Forwarding Detection Daemon");
-DEFINE_MTYPE(BFDD, BFDD_CONTROL, "long-lived control socket memory");
-DEFINE_MTYPE(BFDD, BFDD_NOTIFICATION, "short-lived control notification data");
+DEFINE_MTYPE(BFDD, BFDD_CONTROL, "control socket memory");
+DEFINE_MTYPE(BFDD, BFDD_NOTIFICATION, "control notification data");
/* Master of threads. */
struct event_loop *master;