svn commit: samba r15993 - in branches/SAMBA_4_0/source/heimdal/lib/gssapi: .

metze at samba.org metze at samba.org
Thu Jun 1 17:59:05 GMT 2006


Author: metze
Date: 2006-06-01 17:59:05 +0000 (Thu, 01 Jun 2006)
New Revision: 15993

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

Log:
don't use u_int32_t, as the main heimdal code also don't use
it anymore

metze
Modified:
   branches/SAMBA_4_0/source/heimdal/lib/gssapi/accept_sec_context.c
   branches/SAMBA_4_0/source/heimdal/lib/gssapi/init_sec_context.c


Changeset:
Modified: branches/SAMBA_4_0/source/heimdal/lib/gssapi/accept_sec_context.c
===================================================================
--- branches/SAMBA_4_0/source/heimdal/lib/gssapi/accept_sec_context.c	2006-06-01 10:03:18 UTC (rev 15992)
+++ branches/SAMBA_4_0/source/heimdal/lib/gssapi/accept_sec_context.c	2006-06-01 17:59:05 UTC (rev 15993)
@@ -198,7 +198,7 @@
 	OM_uint32 ret;
 	int32_t seq_number;
 	int is_cfx = 0;
-	u_int32_t *flags = &(*context_handle)->flags;
+	OM_uint32 *flags = &(*context_handle)->flags;
 
 	krb5_auth_getremoteseqnumber (gssapi_krb5_context,
 				      (*context_handle)->auth_context,

Modified: branches/SAMBA_4_0/source/heimdal/lib/gssapi/init_sec_context.c
===================================================================
--- branches/SAMBA_4_0/source/heimdal/lib/gssapi/init_sec_context.c	2006-06-01 10:03:18 UTC (rev 15992)
+++ branches/SAMBA_4_0/source/heimdal/lib/gssapi/init_sec_context.c	2006-06-01 17:59:05 UTC (rev 15993)
@@ -245,7 +245,7 @@
 	OM_uint32 ret;
 	int32_t seq_number;
 	int is_cfx = 0;
-	u_int32_t flags = (*context_handle)->flags;
+	OM_uint32 flags = (*context_handle)->flags;
 
 	krb5_auth_getremoteseqnumber (gssapi_krb5_context,
 				      (*context_handle)->auth_context,
@@ -275,7 +275,7 @@
 	       krb5_creds *cred,
 	       const gss_name_t target_name,
 	       krb5_data *fwd_data,
-	       u_int32_t *flags)
+	       OM_uint32 *flags)
 {
     krb5_creds creds;
     krb5_kdc_flags fwd_flags;
@@ -353,7 +353,7 @@
     krb5_flags ap_options;
     krb5_creds *cred = NULL;
     krb5_data outbuf;
-    u_int32_t flags;
+    OM_uint32 flags;
     krb5_data authenticator;
     Checksum cksum;
     krb5_enctype enctype;
@@ -573,7 +573,7 @@
 	OM_uint32 ret;
 	krb5_error_code kret;
 	krb5_data inbuf;
-	u_int32_t flags = (*context_handle)->flags;
+	OM_uint32 flags = (*context_handle)->flags;
 	int32_t l_seq_number;
 	int32_t r_seq_number;
 	



More information about the samba-cvs mailing list