]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
comment out composite name hack for now
authorLuke Howard <lukeh@padl.com>
Wed, 26 Aug 2009 17:36:27 +0000 (17:36 +0000)
committerLuke Howard <lukeh@padl.com>
Wed, 26 Aug 2009 17:36:27 +0000 (17:36 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/users/lhoward/authdata@22629 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/gssapi/mechglue/g_glue.c

index 2f32e555e2e2e1fda5353698f4f3048c2633ed75..aafc20e06e7f845fcc2a0fd9b8a3a17d83aff155 100644 (file)
@@ -288,6 +288,7 @@ OM_uint32 gssint_get_mech_type(OID, token)
  *  Internal routines to get and release an internal mechanism name
  */
 
+#if 0
 static OM_uint32
 import_internal_name_composite(OM_uint32 *minor_status,
                               gss_mechanism mech,
@@ -326,6 +327,7 @@ import_internal_name_composite(OM_uint32 *minor_status,
 
     return (status);
 }
+#endif
 
 OM_uint32 gssint_import_internal_name (minor_status, mech_type, union_name, 
                                internal_name)
@@ -341,6 +343,7 @@ gss_name_t  *internal_name;
     if (mech == NULL)
        return (GSS_S_BAD_MECH);
 
+#if 0
     /* Try composite name, it will preserve any extended attributes */
     if (union_name->mech_type && union_name->mech_name) {
        status = import_internal_name_composite(minor_status,
@@ -350,6 +353,7 @@ gss_name_t  *internal_name;
        if (status == GSS_S_COMPLETE)
            return (GSS_S_COMPLETE);
     }
+#endif
 
     if (mech->gss_import_name == NULL)
        return (GSS_S_UNAVAILABLE);