From 29b1faaef65c47eed9fdcc1c3269ae4da981d4bb Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sun, 28 May 2023 21:11:36 +0000 Subject: [PATCH] krb5/send_to_kdc.c: Constify plugin stuff. --- lib/krb5/send_to_kdc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/krb5/send_to_kdc.c b/lib/krb5/send_to_kdc.c index 4bd6c959b..bcabdd4a1 100644 --- a/lib/krb5/send_to_kdc.c +++ b/lib/krb5/send_to_kdc.c @@ -96,9 +96,9 @@ realmcallback(krb5_context context, const void *plug, void *plugctx, void *userc ctx->send_data, ctx->receive); } -static const char *send_to_kdc_plugin_deps[] = { "krb5", NULL }; +static const char *const send_to_kdc_plugin_deps[] = { "krb5", NULL }; -static struct heim_plugin_data +static const struct heim_plugin_data send_to_kdc_plugin_data = { "krb5", KRB5_PLUGIN_SEND_TO_KDC,