aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2026-01-31 17:00:15 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2026-01-31 17:00:15 +0000
commit8a8dc73ef87b538c369abc1b642e2a40b52c53c2 (patch)
tree45e1ba0e8b8e946effac042dad26ac807497bd0b
parent6e82cb29066765c03408a81c9bec4ed0d99cab81 (diff)
heimdal: Add missing function prototypes
This fixes the build with GCC 14 on stable/14 which raises fatal -Wimplicit-function-declaration warnings. Reviewed by: rmacklem, cy Fixes: 5000d023a446 ("heimdal-kadmin: Add support for the -f dump option") Differential Revision: https://reviews.freebsd.org/D54931
-rw-r--r--crypto/heimdal/lib/hdb/hdb-private.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/crypto/heimdal/lib/hdb/hdb-private.h b/crypto/heimdal/lib/hdb/hdb-private.h
index 8a748694424f..1a307bccc199 100644
--- a/crypto/heimdal/lib/hdb/hdb-private.h
+++ b/crypto/heimdal/lib/hdb/hdb-private.h
@@ -25,6 +25,12 @@ _hdb_keytab2hdb_entry (
hdb_entry_ex */*entry*/);
int
+_hdb_mit_dump2mitdb_entry(
+ krb5_context /*context*/,
+ char */*line*/,
+ krb5_storage */*sp*/);
+
+int
_hdb_mkey_decrypt (
krb5_context /*context*/,
hdb_master_key /*key*/,
@@ -52,6 +58,12 @@ _hdb_remove (
krb5_const_principal /*principal*/);
krb5_error_code
+_hdb_set_master_key_usage (
+ krb5_context /*context*/,
+ HDB */*db*/,
+ unsigned int /*key_usage*/);
+
+krb5_error_code
_hdb_store (
krb5_context /*context*/,
HDB */*db*/,