diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-03-10 21:33:11 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-03-10 23:13:01 +0100 |
commit | ce4531ee312c1171fcffcdbe9e214ae43384cdfd (patch) | |
tree | 30de1cb84b321fdcd815e7456bbf5743ce458a8b /source3/lib/dbwrap | |
parent | f076186d3ab95c4d4c4d3d7b66f283881ac1fbbb (diff) | |
download | samba-ce4531ee312c1171fcffcdbe9e214ae43384cdfd.tar.gz samba-ce4531ee312c1171fcffcdbe9e214ae43384cdfd.tar.bz2 samba-ce4531ee312c1171fcffcdbe9e214ae43384cdfd.zip |
tdb_wrap: Move to specific directory.
It's a bit confusing to mix low-level and high-level libraries. We had
multiple libraries in one directory, and there were have circular
dependencies with other libraries outside that directory (in this case,
samba-hostconfig).
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sat Mar 10 23:13:01 CET 2012 on sn-devel-104
Diffstat (limited to 'source3/lib/dbwrap')
-rw-r--r-- | source3/lib/dbwrap/dbwrap_ctdb.c | 2 | ||||
-rw-r--r-- | source3/lib/dbwrap/dbwrap_tdb.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/dbwrap/dbwrap_ctdb.c b/source3/lib/dbwrap/dbwrap_ctdb.c index 2e0146fdb0..d50f75ef5d 100644 --- a/source3/lib/dbwrap/dbwrap_ctdb.c +++ b/source3/lib/dbwrap/dbwrap_ctdb.c @@ -20,7 +20,7 @@ #include "includes.h" #include "system/filesys.h" -#include "lib/util/tdb_wrap.h" +#include "lib/tdb_wrap/tdb_wrap.h" #include "util_tdb.h" #include "dbwrap/dbwrap_ctdb.h" #include "dbwrap/dbwrap_rbt.h" diff --git a/source3/lib/dbwrap/dbwrap_tdb.c b/source3/lib/dbwrap/dbwrap_tdb.c index 2c82810c50..454073a52f 100644 --- a/source3/lib/dbwrap/dbwrap_tdb.c +++ b/source3/lib/dbwrap/dbwrap_tdb.c @@ -21,7 +21,7 @@ #include "dbwrap/dbwrap.h" #include "dbwrap/dbwrap_private.h" #include "dbwrap/dbwrap_tdb.h" -#include "lib/util/tdb_wrap.h" +#include "lib/tdb_wrap/tdb_wrap.h" #include "lib/param/param.h" #include "util_tdb.h" |