summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Sutton <josephsutton@catalyst.net.nz>2022-02-22 16:30:27 +1300
committerJule Anger <janger@samba.org>2022-03-02 10:26:31 +0000
commitf90e729e01eb9d43345bde12af891acf5d8ab64b (patch)
tree2cc7b4f622d8e64d93dedf5f13718d1338350e1a
parent8ae5ce46e57e8a78d55f3bd6cbb679ca8308adeb (diff)
downloadsamba-f90e729e01eb9d43345bde12af891acf5d8ab64b.tar.gz
s4:kdc: Increment plugin minor version
This is an adaptation to Heimdal: commit 40e4a4df09c2d6c3ba7bf14df1dee74a0bc18110 Author: Luke Howard <lukeh@padl.com> Date: Mon Jan 10 12:50:37 2022 +1100 kdc: use astgs_request_t for client/server name (TGS) Store the client and server principal name from the TGT and request (respectively) in the astgs_request_t rather than using local variables. NOTE: THIS COMMIT WON'T COMPILE/WORK ON ITS OWN! BUG: https://bugzilla.samba.org/show_bug.cgi?id=14995 Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from commit 068f2bf117ab9968011fdb8d60b98bb37d529658)
-rw-r--r--source4/kdc/wdc-samba4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/kdc/wdc-samba4.c b/source4/kdc/wdc-samba4.c
index 3366726597e..9356979dd7d 100644
--- a/source4/kdc/wdc-samba4.c
+++ b/source4/kdc/wdc-samba4.c
@@ -960,7 +960,7 @@ static krb5_error_code samba_wdc_referral_policy(void *priv,
}
struct krb5plugin_kdc_ftable kdc_plugin_table = {
- .minor_version = KRB5_PLUGIN_KDC_VERSION_8,
+ .minor_version = KRB5_PLUGIN_KDC_VERSION_9,
.init = samba_wdc_plugin_init,
.fini = samba_wdc_plugin_fini,
.pac_verify = samba_wdc_reget_pac,