From: Tim Prouty Date: Wed, 7 Jan 2009 21:12:35 +0000 (-0800) Subject: s3 merged build: Fix include error X-Git-Tag: samba-4.0.0alpha6~224 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bed05fbf2e73d4e637e9267c2205feae7ae6440e;p=thirdparty%2Fsamba.git 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. --- diff --git a/source4/lib/tdb_wrap.h b/source4/lib/tdb_wrap.h index b97d88a93ae..eb0191fb31a 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;