]> andersk Git - gssapi-openssh.git/commitdiff
gssapi_kerberos_mech_old and gssapi_gsi_mech_old no longer used.
authorjbasney <jbasney>
Sat, 12 Mar 2005 21:42:20 +0000 (21:42 +0000)
committerjbasney <jbasney>
Sat, 12 Mar 2005 21:42:20 +0000 (21:42 +0000)
don't need to maintain compatibility with very old versions.

openssh/gss-serv-gsi.c
openssh/gss-serv-krb5.c
openssh/gss-serv.c

index 068f056c63821349e84489f84eb21016804b3506..aa1dd749012e436b04aff23b6e121f8d324bdc04 100644 (file)
@@ -43,16 +43,6 @@ static int ssh_gssapi_gsi_userok(ssh_gssapi_client *client, char *name);
 static int ssh_gssapi_gsi_localname(ssh_gssapi_client *client, char **user);
 static void ssh_gssapi_gsi_storecreds(ssh_gssapi_client *client);
 
-ssh_gssapi_mech gssapi_gsi_mech_old = {
-       "N3+k7/4wGxHyuP8Yxi4RhA==",
-       "GSI",
-       {9, "\x2B\x06\x01\x04\x01\x9B\x50\x01\x01"},
-       NULL,
-       &ssh_gssapi_gsi_userok,
-       &ssh_gssapi_gsi_localname,
-       &ssh_gssapi_gsi_storecreds
-};
-
 ssh_gssapi_mech gssapi_gsi_mech = {
        "dZuIebMjgUqaxvbF7hDbAw==",
        "GSI",
index 24929dc7b3ff5a71277463ca89a7b05c3a3b0aa9..fe9c995af6255e85917735853cc7d6729538d42b 100644 (file)
@@ -64,16 +64,6 @@ ssh_gssapi_mech gssapi_kerberos_mech = {
        &ssh_gssapi_krb5_storecreds
 };
 
-ssh_gssapi_mech gssapi_kerberos_mech_old = {
-       "Se3H81ismmOC3OE+FwYCiQ==",
-       "Kerberos",
-       {9, "\x2A\x86\x48\x86\xF7\x12\x01\x02\x02"},
-       &ssh_gssapi_krb5_init,
-       &ssh_gssapi_krb5_userok,
-       &ssh_gssapi_krb5_localname,
-       &ssh_gssapi_krb5_storecreds
-};
-
 /* Initialise the krb5 library, for the stuff that GSSAPI won't do */
 
 static int
index e3604f6585d90121d3d0b500828757635afc08c0..79c86e88f850de4ab7aeb715752678162e8f48dd 100644 (file)
@@ -57,21 +57,17 @@ ssh_gssapi_mech gssapi_null_mech =
 
 #ifdef KRB5
 extern ssh_gssapi_mech gssapi_kerberos_mech;
-extern ssh_gssapi_mech gssapi_kerberos_mech_old;
 #endif
 #ifdef GSI
 extern ssh_gssapi_mech gssapi_gsi_mech;
-extern ssh_gssapi_mech gssapi_gsi_mech_old;
 #endif
 
 ssh_gssapi_mech* supported_mechs[]= {
 #ifdef KRB5
        &gssapi_kerberos_mech,
-       &gssapi_kerberos_mech_old, /* Support for legacy clients */
 #endif
 #ifdef GSI
        &gssapi_gsi_mech,
-       &gssapi_gsi_mech_old,   /* Support for legacy clients */
 #endif
        &gssapi_null_mech,
 };
This page took 0.052359 seconds and 5 git commands to generate.