mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
lib/util_tdb: depend directly on tdb, not tdb_compat.
Simple change, as we get rid of tdb_compat in favour of tdb directly. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
5ff92d8f7d
commit
2fc3265873
@ -21,7 +21,7 @@
|
||||
*/
|
||||
|
||||
#include "includes.h"
|
||||
#include "../lib/tdb_compat/tdb_compat.h"
|
||||
#include "../lib/tdb/include/tdb.h"
|
||||
#include "../lib/util/util_tdb.h"
|
||||
|
||||
/* these are little tdb utility functions that are meant to make
|
||||
@ -117,7 +117,7 @@ int32_t tdb_fetch_int32_byblob(struct tdb_context *tdb, TDB_DATA key)
|
||||
TDB_DATA data;
|
||||
int32_t ret;
|
||||
|
||||
data = tdb_fetch_compat(tdb, key);
|
||||
data = tdb_fetch(tdb, key);
|
||||
if (!data.dptr || data.dsize != sizeof(int32_t)) {
|
||||
SAFE_FREE(data.dptr);
|
||||
return -1;
|
||||
@ -174,7 +174,7 @@ bool tdb_fetch_uint32_byblob(struct tdb_context *tdb, TDB_DATA key, uint32_t *va
|
||||
{
|
||||
TDB_DATA data;
|
||||
|
||||
data = tdb_fetch_compat(tdb, key);
|
||||
data = tdb_fetch(tdb, key);
|
||||
if (!data.dptr || data.dsize != sizeof(uint32_t)) {
|
||||
SAFE_FREE(data.dptr);
|
||||
return false;
|
||||
@ -246,7 +246,7 @@ TDB_DATA tdb_fetch_bystring(struct tdb_context *tdb, const char *keystr)
|
||||
{
|
||||
TDB_DATA key = string_term_tdb_data(keystr);
|
||||
|
||||
return tdb_fetch_compat(tdb, key);
|
||||
return tdb_fetch(tdb, key);
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
@ -41,7 +41,7 @@ bld.SAMBA_SUBSYSTEM('UNIX_PRIVS',
|
||||
bld.SAMBA_LIBRARY('util_tdb',
|
||||
source='util_tdb.c',
|
||||
local_include=False,
|
||||
public_deps='tdb_compat talloc',
|
||||
public_deps='tdb talloc',
|
||||
private_library=True
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user