diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-19 12:43:10 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-19 05:38:07 +0200 |
commit | 316e5e376c793d1f9882eebddbbd855cf121cce4 (patch) | |
tree | 239d4fb35bc72910b2e02c97438f639812ab697c /source3 | |
parent | df4a6e82280845668dee6fe10f2025c9fa2b958c (diff) | |
download | samba-316e5e376c793d1f9882eebddbbd855cf121cce4.tar.gz samba-316e5e376c793d1f9882eebddbbd855cf121cce4.tar.bz2 samba-316e5e376c793d1f9882eebddbbd855cf121cce4.zip |
lib/tdb_wrap: use tdb directly, not tdb_compat.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/messages_local.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/messages_local.c b/source3/lib/messages_local.c index e20024ae59..74b6a13764 100644 --- a/source3/lib/messages_local.c +++ b/source3/lib/messages_local.c @@ -218,7 +218,7 @@ static NTSTATUS messaging_tdb_fetch(TDB_CONTEXT *msg_tdb, return NT_STATUS_NO_MEMORY; } - data = tdb_fetch_compat(msg_tdb, key); + data = tdb_fetch(msg_tdb, key); if (data.dptr == NULL) { *presult = result; |