From bed05fbf2e73d4e637e9267c2205feae7ae6440e Mon Sep 17 00:00:00 2001 From: Tim Prouty Date: Wed, 7 Jan 2009 13:12:35 -0800 Subject: s3 merged build: Fix include error On some builds compiling source4/ntvfs/common/brlock_tdb.c was failing because tdb_wrap.h couldn't find tdb.h. Adding the path should fix the problem. --- source4/lib/tdb_wrap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/tdb_wrap.h') diff --git a/source4/lib/tdb_wrap.h b/source4/lib/tdb_wrap.h index b97d88a93a..eb0191fb31 100644 --- a/source4/lib/tdb_wrap.h +++ b/source4/lib/tdb_wrap.h @@ -22,7 +22,7 @@ #ifndef _TDB_WRAP_H_ #define _TDB_WRAP_H_ -#include +#include "../lib/tdb/include/tdb.h" struct tdb_wrap { struct tdb_context *tdb; -- cgit