From 0eca319cc0205f461d3bdcc928fa5ddbdbd86b35 Mon Sep 17 00:00:00 2001 From: Mark Stapp Date: Mon, 12 Aug 2019 09:50:43 -0400 Subject: [PATCH] zebra: make the dplane pthread name consistent Make the dplane pthread's name consistent (lower-case) with other pthreads. Signed-off-by: Mark Stapp --- zebra/zebra_dplane.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra/zebra_dplane.c b/zebra/zebra_dplane.c index f93562b31b..c90e027f02 100644 --- a/zebra/zebra_dplane.c +++ b/zebra/zebra_dplane.c @@ -3023,7 +3023,7 @@ void zebra_dplane_start(void) /* Start dataplane pthread */ zdplane_info.dg_pthread = frr_pthread_new(&pattr, "Zebra dplane thread", - "Zebra dplane"); + "zebra_dplane"); zdplane_info.dg_master = zdplane_info.dg_pthread->master;