summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/lib/dbwrap/dbwrap.c5
-rw-r--r--source3/lib/dbwrap/dbwrap.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/source3/lib/dbwrap/dbwrap.c b/source3/lib/dbwrap/dbwrap.c
index c3b3b0f0e5..3cbd699910 100644
--- a/source3/lib/dbwrap/dbwrap.c
+++ b/source3/lib/dbwrap/dbwrap.c
@@ -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);
+}
diff --git a/source3/lib/dbwrap/dbwrap.h b/source3/lib/dbwrap/dbwrap.h
index 0ddc9e145f..79e215acad 100644
--- a/source3/lib/dbwrap/dbwrap.h
+++ b/source3/lib/dbwrap/dbwrap.h
@@ -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 */