Revert "Fix tests/plugin/windc.c"

Will fix by exporting kdc_get_instance() from libkdc.
This commit is contained in:
Luke Howard
2019-01-05 10:47:42 +11:00
parent 99188ea797
commit e776e6c5ed

View File

@@ -98,7 +98,9 @@ windc_plugin_load(krb5_context context,
static uintptr_t
windc_get_instance(const char *libname)
{
if (strcmp(libname, "hdb") == 0)
if (strcmp(libname, "kdc") == 0)
return kdc_get_instance(libname);
else if (strcmp(libname, "hdb") == 0)
return hdb_get_instance(libname);
else if (strcmp(libname, "krb5") == 0)
return krb5_get_instance(libname);