From 571d8fe5fcf0b6727f013a0616da11a04acdd75c Mon Sep 17 00:00:00 2001 From: Alexandra Ellwood Date: Fri, 10 Oct 2008 20:50:07 +0000 Subject: [PATCH] allow kim ui plugins to have any name Note that there can still only be one, it will just use the first one it finds. Just want to have different names for them so that we can distinguish between different plugins. ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20861 dc483132-0cff-0310-8789-dd5450dbe970 --- src/kim/lib/kim_ui_plugin.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/kim/lib/kim_ui_plugin.c b/src/kim/lib/kim_ui_plugin.c index a19ae7535..0a00150e1 100644 --- a/src/kim/lib/kim_ui_plugin.c +++ b/src/kim/lib/kim_ui_plugin.c @@ -29,11 +29,10 @@ #include "kim_private.h" +const char * const *kim_ui_plugin_files = NULL; #if TARGET_OS_MAC -const char * const kim_ui_plugin_files[] = { "KerberosUI", NULL }; static const char *kim_ui_plugin_dirs[] = { KRB5_KIM_UI_PLUGIN_BUNDLE_DIR, LIBDIR "/krb5/plugins/kimui", NULL }; #else -const char * const *kim_ui_plugin_files = NULL; static const char *kim_ui_plugin_dirs[] = { LIBDIR "/krb5/plugins/kimui", NULL }; #endif -- 2.26.2