From: Tim Prouty Date: Wed, 7 Jan 2009 21:12:35 +0000 (-0800) Subject: s3 merged build: Fix include error X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=bed05fbf2e73d4e637e9267c2205feae7ae6440e;p=metze%2Fsamba%2Fwip.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 b97d88a93ae0..eb0191fb31ae 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;