diff options
author | Volker Lendecke <vl@samba.org> | 2012-01-02 13:30:51 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-04-20 13:42:40 +0200 |
commit | 8e5b11bc143e8532aeed504e47b881ce53411ce3 (patch) | |
tree | 8677fa01565fdaabd899862926fd5d38f1d2f002 /source3/lib/dbwrap/dbwrap_private.h | |
parent | 0f20ffbcbd41895dd073051539411f7194ae8224 (diff) | |
download | samba-8e5b11bc143e8532aeed504e47b881ce53411ce3.tar.gz samba-8e5b11bc143e8532aeed504e47b881ce53411ce3.tar.bz2 samba-8e5b11bc143e8532aeed504e47b881ce53411ce3.zip |
s3-dbwrap: Add "db_context" to "db_record"
Diffstat (limited to 'source3/lib/dbwrap/dbwrap_private.h')
-rw-r--r-- | source3/lib/dbwrap/dbwrap_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/lib/dbwrap/dbwrap_private.h b/source3/lib/dbwrap/dbwrap_private.h index b24e3b370c..28da1add53 100644 --- a/source3/lib/dbwrap/dbwrap_private.h +++ b/source3/lib/dbwrap/dbwrap_private.h @@ -26,6 +26,7 @@ #include "dbwrap/dbwrap_open.h" struct db_record { + struct db_context *db; TDB_DATA key, value; NTSTATUS (*store)(struct db_record *rec, TDB_DATA data, int flag); NTSTATUS (*delete_rec)(struct db_record *rec); |