summaryrefslogtreecommitdiff
path: root/zebra/debug.h
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2022-12-13 20:09:45 -0500
committerGitHub <noreply@github.com>2022-12-13 20:09:45 -0500
commit22e60ca210dd312de6394ea5fcb03630bb490c08 (patch)
treea1995c66b02bb3988b3450e06d32a4a3799a7e69 /zebra/debug.h
parent355e7218f113d2770ea8f4721708f052e084732a (diff)
parent3edb3a644d2d70c457e02a076817f6fa4c371ee6 (diff)
Merge pull request #12516 from mjstapp/fix_debug_dpdk
zebra: fix flags used for debug dpdk
Diffstat (limited to 'zebra/debug.h')
-rw-r--r--zebra/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/debug.h b/zebra/debug.h
index e0c6a9e2b9..514827707a 100644
--- a/zebra/debug.h
+++ b/zebra/debug.h
@@ -111,9 +111,9 @@ extern "C" {
(zebra_debug_dplane & ZEBRA_DEBUG_DPLANE_DETAILED)
#define IS_ZEBRA_DEBUG_DPLANE_DPDK \
- (zebra_debug_dplane & ZEBRA_DEBUG_DPLANE_DPDK)
+ (zebra_debug_dplane_dpdk & ZEBRA_DEBUG_DPLANE_DPDK)
#define IS_ZEBRA_DEBUG_DPLANE_DPDK_DETAIL \
- (zebra_debug_dplane & ZEBRA_DEBUG_DPLANE_DPDK_DETAIL)
+ (zebra_debug_dplane_dpdk & ZEBRA_DEBUG_DPLANE_DPDK_DETAIL)
#define IS_ZEBRA_DEBUG_MLAG (zebra_debug_mlag & ZEBRA_DEBUG_MLAG)