1
0
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:
Michael Adam 2011-08-17 22:43:01 +02:00
parent 7b9bf28514
commit d8ce5bc656
2 changed files with 6 additions and 0 deletions

View File

@ -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);
}

View File

@ -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 */