(whcih is krb5_kt_dfl_ops).
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4402
dc483132-0cff-0310-8789-
dd5450dbe970
--- /dev/null
+Thu Sep 29 23:19:06 1994 Theodore Y. Ts'o (tytso@dcl)
+
+ * ktbase.c (krb5_kt_resolve_name): If the prefix "FILE:" is not
+ given, assume the default operations list (whcih is
+ krb5_kt_dfl_ops).
+
+
int pfxlen;
cp = strchr (name, ':');
- if (!cp)
- return KRB5_KT_BADNAME;
+ if (!cp) {
+ return (krb5_kt_dfl_ops.resolve)(name, ktid);
+ }
pfxlen = cp - (char *)name;
resid = (char *)name + pfxlen + 1;