'.', assume that they are fully qualified already.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6883
dc483132-0cff-0310-8789-
dd5450dbe970
+Thu Sep 28 22:58:53 1995 Theodore Y. Ts'o <tytso@dcl>
+
+ * conv_princ.c (krb5_425_conv_principal): Only convert instances
+ which don't have a '.' in them. If they have a '.',
+ assume that they are fully qualified already.
+
Thu Sep 28 12:00:00 1995 John Rivlin <jrivlin@fusion.com)
* gc_via_tkt.c: Cleaned up corrupt ticket error testing to
p++;
}
name = p->v5_str;
- if (p->flags & DO_REALM_CONVERSION) {
+ if ((p->flags & DO_REALM_CONVERSION) && !strchr(instance, '.')) {
names[0] = "realms";
names[1] = realm;
names[2] = "v4_instance_convert";