From: Ezra Peisach Date: Mon, 30 Jul 2001 18:22:14 +0000 (+0000) Subject: * ftp.c: Declare mech_type in struct gss_trials gss_OID to be X-Git-Tag: krb5-1.3-alpha1~1159 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9b14df00e562889e5e5e7150106a475c6f42bc41;p=krb5.git * ftp.c: Declare mech_type in struct gss_trials gss_OID to be compatible with GSS_C_NO_OID type. (was gss_OID *). git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13652 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/appl/gssftp/ftp/ChangeLog b/src/appl/gssftp/ftp/ChangeLog index d9fc10c2b..490be31b6 100644 --- a/src/appl/gssftp/ftp/ChangeLog +++ b/src/appl/gssftp/ftp/ChangeLog @@ -1,3 +1,8 @@ +2001-07-30 Ezra Peisach + + * ftp.c: Declare mech_type in struct gss_trials gss_OID to be + compatible with GSS_C_NO_OID type. (was gss_OID *). + 2001-07-27 Danilo Almeida * ftp.c: Remove local Win32-specific definition of gss_mech_krb5. diff --git a/src/appl/gssftp/ftp/ftp.c b/src/appl/gssftp/ftp/ftp.c index da7c761f1..e5027da81 100644 --- a/src/appl/gssftp/ftp/ftp.c +++ b/src/appl/gssftp/ftp/ftp.c @@ -1961,7 +1961,7 @@ char realm[REALM_SZ + 1]; #ifdef GSSAPI struct { - gss_OID *mech_type; + gss_OID mech_type; char *service_name; } gss_trials[] = { { GSS_C_NO_OID, "ftp" },