1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

s4:kdc: Make boolean members into bit‐fields

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-10-03 14:33:48 +13:00 committed by Andrew Bartlett
parent a57d973d80
commit 16cb8c4787

View File

@ -63,11 +63,11 @@ struct samba_kdc_entry {
struct auth_user_info_dc *info_from_db;
const struct authn_kerberos_client_policy *client_policy;
const struct authn_server_policy *server_policy;
bool is_krbtgt;
bool is_rodc;
bool is_trust;
uint32_t supported_enctypes;
NTSTATUS reject_status;
bool is_krbtgt : 1;
bool is_rodc : 1;
bool is_trust : 1;
};
extern struct hdb_method hdb_samba4_interface;