mirror of
https://github.com/samba-team/samba.git
synced 2025-03-20 22:50:26 +03:00
s3:dbwrap: add wrapper dbwrap_get_flags()
This commit is contained in:
parent
7b9bf28514
commit
d8ce5bc656
@ -212,3 +212,8 @@ int dbwrap_wipe(struct db_context *db)
|
||||
{
|
||||
return db->wipe(db);
|
||||
}
|
||||
|
||||
int dbwrap_get_flags(struct db_context *db)
|
||||
{
|
||||
return db->get_flags(db);
|
||||
}
|
||||
|
@ -79,6 +79,7 @@ int dbwrap_parse_record(struct db_context *db, TDB_DATA key,
|
||||
void *private_data),
|
||||
void *private_data);
|
||||
int dbwrap_wipe(struct db_context *db);
|
||||
int dbwrap_get_flags(struct db_context *db);
|
||||
|
||||
|
||||
/* The following definitions come from lib/dbwrap_util.c */
|
||||
|
Loading…
x
Reference in New Issue
Block a user