gss: remove gss_get_instance()

This commit is contained in:
Luke Howard
2022-01-29 10:28:40 +11:00
committed by Jeffrey Altman
parent 301b7ce711
commit 69973757ce
7 changed files with 0 additions and 24 deletions

View File

@@ -583,16 +583,3 @@ gss_oid_to_name(gss_const_OID oid)
return NULL;
}
GSSAPI_LIB_FUNCTION uintptr_t GSSAPI_CALLCONV
gss_get_instance(const char *libname)
{
static const char *instance = "libgssapi";
if (strcmp(libname, "gssapi") == 0)
return (uintptr_t)instance;
else if (strcmp(libname, "krb5") == 0)
return krb5_get_instance(libname);
return 0;
}