diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-10-20 23:32:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:21:30 -0500 |
commit | af870da6194b47c6cd09445c1e03832d00e951bb (patch) | |
tree | d8693e9c9fc8055d98d4275b7669e2186c86aafa /source4/lib/messaging | |
parent | b316b78cd5d2c511f59ef325c5e8fec68e02ddfe (diff) | |
download | samba-af870da6194b47c6cd09445c1e03832d00e951bb.tar.gz samba-af870da6194b47c6cd09445c1e03832d00e951bb.tar.xz samba-af870da6194b47c6cd09445c1e03832d00e951bb.zip |
r19428: moved tdbutil.c from lib/tdb/common/ to lib/util/util_tdb.c
tdbutil.c is Samba specific, so should not be part of the generic tdb
library
(This used to be commit 979dd24f5e44605fc1603b690913b8c31be7478f)
Diffstat (limited to 'source4/lib/messaging')
-rw-r--r-- | source4/lib/messaging/config.mk | 3 | ||||
-rw-r--r-- | source4/lib/messaging/messaging.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/source4/lib/messaging/config.mk b/source4/lib/messaging/config.mk index 5a0cc4c18f..186f54ba74 100644 --- a/source4/lib/messaging/config.mk +++ b/source4/lib/messaging/config.mk @@ -7,6 +7,7 @@ OBJ_FILES = \ PUBLIC_DEPENDENCIES = \ DB_WRAP \ NDR_IRPC \ - UNIX_PRIVS + UNIX_PRIVS \ + UTIL_TDB # End SUBSYSTEM MESSAGING ################################################ diff --git a/source4/lib/messaging/messaging.c b/source4/lib/messaging/messaging.c index 00b33017d8..09e04fda9b 100644 --- a/source4/lib/messaging/messaging.c +++ b/source4/lib/messaging/messaging.c @@ -29,9 +29,10 @@ #include "librpc/gen_ndr/ndr_irpc.h" #include "lib/messaging/irpc.h" #include "db_wrap.h" -#include "lib/tdb/include/tdbutil.h" #include "lib/util/unix_privs.h" #include "librpc/rpc/dcerpc.h" +#include "lib/tdb/include/tdb.h" +#include "lib/util/util_tdb.h" /* change the message version with any incompatible changes in the protocol */ #define MESSAGING_VERSION 1 |