summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-01-07 13:12:35 -0800
committerTim Prouty <tprouty@samba.org>2009-01-07 15:03:16 -0800
commitbed05fbf2e73d4e637e9267c2205feae7ae6440e (patch)
tree36b2241b1b435f3516f64c13f946ae0d6bd59524 /source4/lib
parent9b44fb1c931e8e295794aa33394aa3ddd930f1fa (diff)
downloadsamba-bed05fbf2e73d4e637e9267c2205feae7ae6440e.tar.gz
samba-bed05fbf2e73d4e637e9267c2205feae7ae6440e.tar.bz2
samba-bed05fbf2e73d4e637e9267c2205feae7ae6440e.zip
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.
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/tdb_wrap.h2
1 files changed, 1 insertions, 1 deletions
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 <tdb.h>
+#include "../lib/tdb/include/tdb.h"
struct tdb_wrap {
struct tdb_context *tdb;