]> git.puffer.fish Git - matthieu/frr.git/commitdiff
zebra: make the dplane pthread name consistent
authorMark Stapp <mjs@voltanet.io>
Mon, 12 Aug 2019 13:50:43 +0000 (09:50 -0400)
committerMark Stapp <mjs@voltanet.io>
Mon, 12 Aug 2019 13:50:43 +0000 (09:50 -0400)
Make the dplane pthread's name consistent (lower-case)
with other pthreads.

Signed-off-by: Mark Stapp <mjs@voltanet.io>
zebra/zebra_dplane.c

index f93562b31b53a2263dc11d05b2455dc073b7efb5..c90e027f02b225c02d0c78b030de83f6bf6301da 100644 (file)
@@ -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;