diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-02-27 18:45:53 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-02-28 21:11:21 +0100 |
commit | 136c1600648f690d7709a204c4a7117bb5a868c3 (patch) | |
tree | 0196bb5951597728e3524935dc92033d89afa71f /source4/ntvfs/common | |
parent | 4a42272f09aa52db8b1e11595b266d0ef8d4b041 (diff) | |
download | samba-136c1600648f690d7709a204c4a7117bb5a868c3.tar.gz samba-136c1600648f690d7709a204c4a7117bb5a868c3.tar.bz2 samba-136c1600648f690d7709a204c4a7117bb5a868c3.zip |
Use <tdb.h> to include tdb, so the system include file gets used when building against
system tdb.
Diffstat (limited to 'source4/ntvfs/common')
-rw-r--r-- | source4/ntvfs/common/brlock.c | 2 | ||||
-rw-r--r-- | source4/ntvfs/common/brlock_tdb.c | 2 | ||||
-rw-r--r-- | source4/ntvfs/common/notify.c | 2 | ||||
-rw-r--r-- | source4/ntvfs/common/opendb_tdb.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/source4/ntvfs/common/brlock.c b/source4/ntvfs/common/brlock.c index 154494e4af..94041d2014 100644 --- a/source4/ntvfs/common/brlock.c +++ b/source4/ntvfs/common/brlock.c @@ -26,7 +26,7 @@ #include "includes.h" #include "system/filesys.h" -#include "../tdb/include/tdb.h" +#include <tdb.h> #include "messaging/messaging.h" #include "lib/messaging/irpc.h" #include "libcli/libcli.h" diff --git a/source4/ntvfs/common/brlock_tdb.c b/source4/ntvfs/common/brlock_tdb.c index 07e7c1aa5c..35d4c27d0f 100644 --- a/source4/ntvfs/common/brlock_tdb.c +++ b/source4/ntvfs/common/brlock_tdb.c @@ -26,7 +26,7 @@ #include "includes.h" #include "system/filesys.h" -#include "../tdb/include/tdb.h" +#include <tdb.h> #include "messaging/messaging.h" #include "tdb_wrap.h" #include "lib/messaging/irpc.h" diff --git a/source4/ntvfs/common/notify.c b/source4/ntvfs/common/notify.c index e369404e85..0b5f91bfe1 100644 --- a/source4/ntvfs/common/notify.c +++ b/source4/ntvfs/common/notify.c @@ -25,7 +25,7 @@ #include "includes.h" #include "system/filesys.h" -#include "../tdb/include/tdb.h" +#include <tdb.h> #include "../lib/util/util_tdb.h" #include "messaging/messaging.h" #include "tdb_wrap.h" diff --git a/source4/ntvfs/common/opendb_tdb.c b/source4/ntvfs/common/opendb_tdb.c index 944ec86631..881fd5b57a 100644 --- a/source4/ntvfs/common/opendb_tdb.c +++ b/source4/ntvfs/common/opendb_tdb.c @@ -40,7 +40,7 @@ #include "includes.h" #include "system/filesys.h" -#include "../tdb/include/tdb.h" +#include <tdb.h> #include "messaging/messaging.h" #include "tdb_wrap.h" #include "lib/messaging/irpc.h" |