Override existing plug-ins by default when loading cache plug-ins

This commit is contained in:
Asanka C. Herath
2010-09-22 13:23:18 -04:00
parent 8f7a1311e1
commit 392f9541f1

View File

@@ -54,7 +54,7 @@ _krb5_load_ccache_plugins(krb5_context context)
ccops = _krb5_plugin_get_symbol(p);
if (ccops != NULL && ccops->version == KRB5_CC_OPS_VERSION) {
c_load = krb5_cc_register(context, ccops, FALSE);
c_load = krb5_cc_register(context, ccops, TRUE);
if (c_load != 0)
code = c_load;
}