s3 merged build: Fix include error
authorTim Prouty <tprouty@samba.org>
Wed, 7 Jan 2009 21:12:35 +0000 (13:12 -0800)
committerTim Prouty <tprouty@samba.org>
Wed, 7 Jan 2009 23:03:16 +0000 (15:03 -0800)
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

index b97d88a93ae01a4aeee2e855dd83e84f4df4e06e..eb0191fb31aec2177fee640c6507b82b68fd4a4d 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef _TDB_WRAP_H_
 #define _TDB_WRAP_H_
 
-#include <tdb.h>
+#include "../lib/tdb/include/tdb.h"
 
 struct tdb_wrap {
        struct tdb_context *tdb;