mirror of
https://github.com/samba-team/samba.git
synced 2025-03-09 08:58:35 +03:00
s3: Remove unused dbwrap_record_get_private_data
db_record->private_data is for backends which can include dbwrap_private.h anyway.
This commit is contained in:
parent
20654d6a98
commit
259cb94c11
@ -110,11 +110,6 @@ TDB_DATA dbwrap_record_get_value(const struct db_record *rec)
|
||||
return rec->value;
|
||||
}
|
||||
|
||||
void *dbwrap_record_get_private_data(const struct db_record *rec)
|
||||
{
|
||||
return rec->private_data;
|
||||
}
|
||||
|
||||
NTSTATUS dbwrap_record_store(struct db_record *rec, TDB_DATA data, int flags)
|
||||
{
|
||||
return rec->store(rec, data, flags);
|
||||
|
@ -29,7 +29,6 @@ struct db_context;
|
||||
|
||||
TDB_DATA dbwrap_record_get_key(const struct db_record *rec);
|
||||
TDB_DATA dbwrap_record_get_value(const struct db_record *rec);
|
||||
void *dbwrap_record_get_private_data(const struct db_record *rec);
|
||||
NTSTATUS dbwrap_record_store(struct db_record *rec, TDB_DATA data, int flags);
|
||||
NTSTATUS dbwrap_record_delete(struct db_record *rec);
|
||||
struct db_record *dbwrap_fetch_locked(struct db_context *db,
|
||||
|
Loading…
x
Reference in New Issue
Block a user