From 5c694deee9b5aa66e57b9d6a474a5c3e9c04d5f2 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Tue, 20 Jun 2023 01:20:55 +0000 Subject: [PATCH] _krb5_load_plugins: Sprinkle const. --- lib/krb5/plugin.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/krb5/plugin.c b/lib/krb5/plugin.c index b4035d39d..ddf186a6a 100644 --- a/lib/krb5/plugin.c +++ b/lib/krb5/plugin.c @@ -102,7 +102,8 @@ krb5_plugin_register(krb5_context context, * @paths Array of directory paths where to look */ KRB5_LIB_FUNCTION void KRB5_LIB_CALL -_krb5_load_plugins(krb5_context context, const char *name, const char **paths) +_krb5_load_plugins(krb5_context context, const char *name, + const char *const *paths) { heim_load_plugins(context->hcontext, name, paths); }