From: Joseph Sutton Date: Tue, 22 Feb 2022 03:30:27 +0000 (+1300) Subject: s4:kdc: Increment plugin minor version X-Git-Tag: tevent-0.12.0~600 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=068f2bf117ab9968011fdb8d60b98bb37d529658;p=thirdparty%2Fsamba.git s4:kdc: Increment plugin minor version This is an adaptation to Heimdal: commit 40e4a4df09c2d6c3ba7bf14df1dee74a0bc18110 Author: Luke Howard 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 Reviewed-by: Stefan Metzmacher Reviewed-by: Andrew Bartlett --- 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,