allow kim ui plugins to have any name
authorAlexandra Ellwood <lxs@mit.edu>
Fri, 10 Oct 2008 20:50:07 +0000 (20:50 +0000)
committerAlexandra Ellwood <lxs@mit.edu>
Fri, 10 Oct 2008 20:50:07 +0000 (20:50 +0000)
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

index a19ae7535d56c62bf17eea16451f38cb8a27b445..0a00150e12cd00dd406818f1e77a75a320399d0e 100644 (file)
 #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