From 214fc2bd3a171716330701d951d3b314717c904a Mon Sep 17 00:00:00 2001 From: Mark Stapp Date: Wed, 19 Dec 2018 09:03:33 -0500 Subject: [PATCH] zebra: include lib/queue.h in zebra dataplane Replace direct use of one of the platform-specific xxx-queue.h headers - use the wrapper queue.h instead. Signed-off-by: Mark Stapp --- zebra/zebra_dplane.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra/zebra_dplane.h b/zebra/zebra_dplane.h index b6b2e64600..1336850510 100644 --- a/zebra/zebra_dplane.h +++ b/zebra/zebra_dplane.h @@ -24,7 +24,7 @@ #include "lib/prefix.h" #include "lib/nexthop.h" #include "lib/nexthop_group.h" -#include "lib/openbsd-queue.h" +#include "lib/queue.h" #include "zebra/zebra_ns.h" #include "zebra/rib.h" #include "zebra/zserv.h"