svn commit: lorikeet r352 - in trunk/heimdal/lib/gssapi: .

abartlet at samba.org abartlet at samba.org
Sun Jun 26 10:43:06 GMT 2005


Author: abartlet
Date: 2005-06-26 10:43:06 +0000 (Sun, 26 Jun 2005)
New Revision: 352

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=lorikeet&rev=352

Log:
Use the struct *_data * form of Kerberos structures, rather than the
typedef form.  This should fix the independent build failures.

Andrew Bartlett

Modified:
   trunk/heimdal/lib/gssapi/acquire_cred.c
   trunk/heimdal/lib/gssapi/gssapi.h


Changeset:
Modified: trunk/heimdal/lib/gssapi/acquire_cred.c
===================================================================
--- trunk/heimdal/lib/gssapi/acquire_cred.c	2005-06-23 02:19:56 UTC (rev 351)
+++ trunk/heimdal/lib/gssapi/acquire_cred.c	2005-06-26 10:43:06 UTC (rev 352)
@@ -240,8 +240,8 @@
 
 OM_uint32 gsskrb5_acquire_cred
            (OM_uint32 * minor_status,
-	    krb5_keytab keytab,
-	    krb5_ccache ccache,
+	    struct krb5_keytab_data *keytab,
+	    struct krb5_ccache_data *ccache,
             const gss_name_t desired_name,
             OM_uint32 time_req,
             const gss_OID_set desired_mechs,

Modified: trunk/heimdal/lib/gssapi/gssapi.h
===================================================================
--- trunk/heimdal/lib/gssapi/gssapi.h	2005-06-23 02:19:56 UTC (rev 351)
+++ trunk/heimdal/lib/gssapi/gssapi.h	2005-06-26 10:43:06 UTC (rev 352)
@@ -768,8 +768,8 @@
 
 OM_uint32 gsskrb5_acquire_cred
            (OM_uint32 * minor_status,
-	    krb5_keytab keytab,
-	    krb5_ccache ccache,
+	    struct krb5_keytab_data *keytab,
+	    struct krb5_ccache_data *ccache,
             const gss_name_t desired_name,
             OM_uint32 time_req,
             const gss_OID_set desired_mechs,



More information about the samba-cvs mailing list