1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-25 17:57:42 +03:00

s4:kdc: finally remove unused 'struct sdb_entry_ex'

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Stefan Metzmacher 2022-03-23 04:29:20 +01:00
parent 57bf975231
commit d05f2323d3
2 changed files with 0 additions and 11 deletions

View File

@ -27,12 +27,6 @@
#include "samba_kdc.h"
#include "lib/krb5_wrap/krb5_samba.h"
void sdb_free_entry(struct sdb_entry_ex *ent)
{
sdb_entry_free(&ent->entry);
ZERO_STRUCTP(ent);
}
void sdb_key_free(struct sdb_key *k)
{
if (k == NULL) {

View File

@ -94,10 +94,6 @@ struct sdb_entry {
struct SDBFlags flags;
};
struct sdb_entry_ex {
struct sdb_entry entry;
};
#define SDB_ERR_NOENTRY 36150275
#define SDB_ERR_NOT_FOUND_HERE 36150287
#define SDB_ERR_WRONG_REALM 36150289
@ -128,7 +124,6 @@ struct sdb_entry_ex {
/* This is not supported by HDB */
#define SDB_F_FORCE_CANON 16384 /* force canonicalition */
void sdb_free_entry(struct sdb_entry_ex *e);
void sdb_key_free(struct sdb_key *key);
void sdb_keys_free(struct sdb_keys *keys);
void sdb_entry_free(struct sdb_entry *e);