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

libnet keytab: add flag clean_old_entries to libnet_keytab_context.

Michael
(This used to be commit f40eb8cc20a297c57f6db22e0c2457ce7425d00c)
This commit is contained in:
Michael Adam 2008-08-01 00:03:10 +02:00
parent 134d8319c9
commit 18573c3e1f
2 changed files with 2 additions and 0 deletions

View File

@ -96,6 +96,7 @@ krb5_error_code libnet_keytab_init(TALLOC_CTX *mem_ctx,
r->context = context;
r->keytab = keytab;
r->keytab_name = keytab_string;
r->clean_old_entries = false;
*ctx = r;

View File

@ -36,6 +36,7 @@ struct libnet_keytab_context {
uint8_t zero_buf[16];
uint32_t count;
struct libnet_keytab_entry *entries;
bool clean_old_entries;
};
#endif /* HAVE_KRB5 */