From 1a87568d99e35c7d028d742c59a3f811a67731e3 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 29 Jan 2009 20:07:58 +0100 Subject: [PATCH] Fix the build on "opi" It did not like to include "includes.h" twice --- source3/lib/tdb_validate.c | 2 +- source3/lib/tdb_validate.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/source3/lib/tdb_validate.c b/source3/lib/tdb_validate.c index 948201a5f2a8..1f5dfe4d258b 100644 --- a/source3/lib/tdb_validate.c +++ b/source3/lib/tdb_validate.c @@ -19,8 +19,8 @@ * along with this program. If not, see . */ -#include "includes.h" #include "tdb_validate.h" +#include "includes.h" /* * internal validation function, executed by the child. diff --git a/source3/lib/tdb_validate.h b/source3/lib/tdb_validate.h index 1a207fa66916..9eda79d7db1e 100644 --- a/source3/lib/tdb_validate.h +++ b/source3/lib/tdb_validate.h @@ -22,7 +22,8 @@ #ifndef __TDB_VALIDATE_H__ #define __TDB_VALIDATE_H__ -#include "includes.h" +#include "lib/replace/replace.h" +#include "tdb.h" /** * Flag field for keeping track of the status of a validation. -- 2.34.1