summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/k5-int.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/include/k5-int.h b/src/include/k5-int.h
index 73f404bdf7..63e0e8a32e 100644
--- a/src/include/k5-int.h
+++ b/src/include/k5-int.h
@@ -1057,21 +1057,11 @@ krb5_authdata_free_internal(krb5_context kcontext,
* and krb5.conf man page.
*/
-/*
- * A linked list entry mapping a module name to a module initvt function. The
- * entry may also include a dynamic object handle so that it can be released
- * when the context is destroyed.
- */
-struct plugin_mapping {
- char *modname;
- krb5_plugin_initvt_fn module;
- struct plugin_file_handle *dyn_handle;
- struct plugin_mapping *next;
-};
+struct plugin_mapping;
/* Holds krb5_context information about each pluggable interface. */
struct plugin_interface {
- struct plugin_mapping *modules;
+ struct plugin_mapping **modules;
krb5_boolean configured;
};