From 084d6389061c53a2552e9e86703a698b82fbc4e3 Mon Sep 17 00:00:00 2001 From: Taylor R Campbell Date: Sun, 28 May 2023 21:10:32 +0000 Subject: [PATCH] krb5/db_plugin.c: Constify plugin stuff. --- lib/krb5/db_plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/krb5/db_plugin.c b/lib/krb5/db_plugin.c index 2933bd8ff..e997d3d28 100644 --- a/lib/krb5/db_plugin.c +++ b/lib/krb5/db_plugin.c @@ -14,9 +14,9 @@ db_plugins_plcallback(krb5_context context, const void *plug, void *plugctx, return 0; } -static const char *db_plugin_deps[] = { "krb5", NULL }; +static const char *const db_plugin_deps[] = { "krb5", NULL }; -static struct heim_plugin_data +static const struct heim_plugin_data db_plugin_data = { "krb5", KRB5_PLUGIN_DB,