summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Sutton <josephsutton@catalyst.net.nz>2021-10-08 15:43:41 +1300
committerStefan Metzmacher <metze@samba.org>2021-10-27 22:37:10 +0000
commit9d3419c3068b7ae08049df83927fdf23cad3d223 (patch)
treeef5d9f5793baff281d01060f6e6da594b7f31d0c
parent6fbde5488035897f92c7996c631a1d7fb92824bd (diff)
downloadsamba-9d3419c3068b7ae08049df83927fdf23cad3d223.tar.gz
heimdal: Make _krb5_pac_get_kdc_checksum_info() into a global function
This lets us call it from Samba. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14642 BUG: https://bugzilla.samba.org/show_bug.cgi?id=14881 Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from commit 3bdce12789af1e7a7aba56691f184625a432410d)
-rw-r--r--source4/heimdal/lib/krb5/pac.c8
-rw-r--r--source4/heimdal/lib/krb5/version-script.map2
2 files changed, 5 insertions, 5 deletions
diff --git a/source4/heimdal/lib/krb5/pac.c b/source4/heimdal/lib/krb5/pac.c
index 6535a9bdcc4..f6d38178a88 100644
--- a/source4/heimdal/lib/krb5/pac.c
+++ b/source4/heimdal/lib/krb5/pac.c
@@ -1311,10 +1311,10 @@ out:
}
KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
-_krb5_pac_get_kdc_checksum_info(krb5_context context,
- krb5_pac pac,
- krb5_cksumtype *cstype,
- uint16_t *rodc_id)
+krb5_pac_get_kdc_checksum_info(krb5_context context,
+ krb5_pac pac,
+ krb5_cksumtype *cstype,
+ uint16_t *rodc_id)
{
krb5_error_code ret;
krb5_storage *sp = NULL;
diff --git a/source4/heimdal/lib/krb5/version-script.map b/source4/heimdal/lib/krb5/version-script.map
index e04e02aace9..2359001e9da 100644
--- a/source4/heimdal/lib/krb5/version-script.map
+++ b/source4/heimdal/lib/krb5/version-script.map
@@ -470,6 +470,7 @@ HEIMDAL_KRB5_2.0 {
krb5_pac_add_buffer;
krb5_pac_free;
krb5_pac_get_buffer;
+ krb5_pac_get_kdc_checksum_info;
krb5_pac_get_types;
krb5_pac_init;
krb5_pac_parse;
@@ -753,7 +754,6 @@ HEIMDAL_KRB5_2.0 {
_krb5_pac_sign;
_krb5_kdc_pac_sign_ticket;
_krb5_kdc_pac_ticket_parse;
- _krb5_pac_get_kdc_checksum_info;
_kdc_tkt_insert_pac;
_kdc_tkt_add_if_relevant_ad;
_krb5_parse_moduli;