diff options
author | Alexandra Ellwood <lxs@mit.edu> | 2008-10-10 20:50:07 +0000 |
---|---|---|
committer | Alexandra Ellwood <lxs@mit.edu> | 2008-10-10 20:50:07 +0000 |
commit | 571d8fe5fcf0b6727f013a0616da11a04acdd75c (patch) | |
tree | 8aaa51ca9764852eefd38bbb371d1e2852bd77d2 /src/kim/lib/kim_ui_plugin.c | |
parent | e938813ce6bce90833c6143ec53b7722a5a2d0c4 (diff) | |
download | krb5-571d8fe5fcf0b6727f013a0616da11a04acdd75c.tar.gz krb5-571d8fe5fcf0b6727f013a0616da11a04acdd75c.tar.xz krb5-571d8fe5fcf0b6727f013a0616da11a04acdd75c.zip |
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
Diffstat (limited to 'src/kim/lib/kim_ui_plugin.c')
-rw-r--r-- | src/kim/lib/kim_ui_plugin.c | 3 |
1 files changed, 1 insertions, 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 |