From 5bb796cb259052e5ea5dc9c3c322e96373bbe4d3 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 22 Oct 2020 11:47:27 +0200 Subject: [PATCH] lib: Fix includes for messages.h It references struct tevent_context Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/include/messages.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source3/include/messages.h b/source3/include/messages.h index f7b40664b0b..79e63eccd53 100644 --- a/source3/include/messages.h +++ b/source3/include/messages.h @@ -21,6 +21,9 @@ #ifndef _MESSAGES_H_ #define _MESSAGES_H_ +#include "replace.h" +#include + /* change the message version with any incompatible changes in the protocol */ #define MESSAGE_VERSION 2 -- 2.47.3