From 7bce1ab5e88dd4cf5599ad3a986fbbf8fc61f9d5 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sun, 11 Oct 2009 09:42:59 -0400 Subject: Fix builds with external tdb Make sure we do not reference our internal tdb directly. Let configure define what tdb.h file to use so that builds that use an extrenal tdb do not include 2 different versions of the tdb header. --- lib/util/util_tdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/util') diff --git a/lib/util/util_tdb.c b/lib/util/util_tdb.c index e107cbdc4a..cda8dc75b2 100644 --- a/lib/util/util_tdb.c +++ b/lib/util/util_tdb.c @@ -20,7 +20,7 @@ */ #include "includes.h" -#include "../tdb/include/tdb.h" +#include "tdb.h" #include "../lib/util/util_tdb.h" /* these are little tdb utility functions that are meant to make -- cgit