krb5/pcache.c: Constify plugin stuff.

This commit is contained in:
Taylor R Campbell
2023-05-28 21:11:26 +00:00
committed by Nico Williams
parent 1f870603a4
commit c644d051d8

View File

@@ -58,9 +58,9 @@ cc_plugin_register_to_context(krb5_context context, const void *plug, void *plug
return KRB5_PLUGIN_NO_HANDLE; return KRB5_PLUGIN_NO_HANDLE;
} }
static const char *ccache_plugin_deps[] = { "krb5", NULL }; static const char *const ccache_plugin_deps[] = { "krb5", NULL };
static struct heim_plugin_data static const struct heim_plugin_data
ccache_plugin_data = { ccache_plugin_data = {
"krb5", "krb5",
KRB5_PLUGIN_CCACHE, KRB5_PLUGIN_CCACHE,