value for the host-based service name and the exported name OID to the
list of OID's supported by this mechanism.
import_name.c (krb5_gss_import_name): Add support for the new OID
value for the host-based service name.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10141
dc483132-0cff-0310-8789-
dd5450dbe970
+Tue Jul 29 22:56:04 1997 Theodore Y. Ts'o <tytso@mit.edu>
+
+ * inq_names.c (krb5_gss_inquire_names_for_mech): Add the
+ the new OID value for the host-based service name and
+ the exported name OID to the list of OID's supported by
+ this mechanism.
+
+ * import_name.c (krb5_gss_import_name): Add support for the new
+ OID value for the host-based service name.
+
Mon Jul 21 20:32:14 1997 Ezra Peisach <epeisach@mit.edu>
* accept_sec_context.c (krb5_gss_accept_sec_context): Initialize
/* Go find the appropriate string rep to pass into parse_name */
if ((input_name_type != GSS_C_NULL_OID) &&
- g_OID_equal(input_name_type, gss_nt_service_name)) {
+ (g_OID_equal(input_name_type, gss_nt_service_name) ||
+ g_OID_equal(input_name_type, gss_nt_service_name_v2))) {
char *service, *host;
if ((tmp =
(gss_OID) gss_nt_service_name,
name_types)
) == GSS_S_COMPLETE) &&
+ ((major = gss_add_oid_set_member(minor_status,
+ (gss_OID) gss_nt_service_name_v2,
+ name_types)
+ ) == GSS_S_COMPLETE) &&
+ ((major = gss_add_oid_set_member(minor_status,
+ (gss_OID) gss_nt_exported_name,
+ name_types)
+ ) == GSS_S_COMPLETE) &&
((major = gss_add_oid_set_member(minor_status,
(gss_OID) gss_nt_krb5_name,
name_types)