svn commit: samba r5300 - in branches/SAMBA_4_0/source: gtk/tools lib/tdb/tools libcli/auth rpc_server/remote utils

tridge at samba.org tridge at samba.org
Thu Feb 10 05:22:54 GMT 2005


Author: tridge
Date: 2005-02-10 05:22:53 +0000 (Thu, 10 Feb 2005)
New Revision: 5300

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

Log:
more uint32 and system/filesys.h build fixes when developer mode is enabled




Modified:
   branches/SAMBA_4_0/source/gtk/tools/gwcrontab.c
   branches/SAMBA_4_0/source/lib/tdb/tools/tdbtest.c
   branches/SAMBA_4_0/source/libcli/auth/gensec_gssapi.c
   branches/SAMBA_4_0/source/libcli/auth/gensec_krb5.c
   branches/SAMBA_4_0/source/libcli/auth/kerberos.c
   branches/SAMBA_4_0/source/libcli/auth/kerberos_verify.c
   branches/SAMBA_4_0/source/rpc_server/remote/dcesrv_remote.c
   branches/SAMBA_4_0/source/utils/ntlm_auth.c


Changeset:
Modified: branches/SAMBA_4_0/source/gtk/tools/gwcrontab.c
===================================================================
--- branches/SAMBA_4_0/source/gtk/tools/gwcrontab.c	2005-02-10 05:15:37 UTC (rev 5299)
+++ branches/SAMBA_4_0/source/gtk/tools/gwcrontab.c	2005-02-10 05:22:53 UTC (rev 5300)
@@ -41,7 +41,7 @@
 	struct atsvc_JobEnum r;
 	struct atsvc_enum_ctr ctr;
 	int i;
-	uint32 resume_handle = 0;
+	uint32_t resume_handle = 0;
 
         gtk_list_store_clear(store_jobs);
 

Modified: branches/SAMBA_4_0/source/lib/tdb/tools/tdbtest.c
===================================================================
--- branches/SAMBA_4_0/source/lib/tdb/tools/tdbtest.c	2005-02-10 05:15:37 UTC (rev 5299)
+++ branches/SAMBA_4_0/source/lib/tdb/tools/tdbtest.c	2005-02-10 05:22:53 UTC (rev 5300)
@@ -16,6 +16,7 @@
 #else
 
 #include "includes.h"
+#include "system/filesys.h"
 #include "lib/tdb/include/tdb.h"
 
 #endif

Modified: branches/SAMBA_4_0/source/libcli/auth/gensec_gssapi.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/auth/gensec_gssapi.c	2005-02-10 05:15:37 UTC (rev 5299)
+++ branches/SAMBA_4_0/source/libcli/auth/gensec_gssapi.c	2005-02-10 05:22:53 UTC (rev 5300)
@@ -316,7 +316,7 @@
 }
 
 static BOOL gensec_gssapi_have_feature(struct gensec_security *gensec_security, 
-				       uint32 feature) 
+				       uint32_t feature) 
 {
 	struct gensec_gssapi_state *gensec_gssapi_state = gensec_security->private_data;
 	if (feature & GENSEC_FEATURE_SIGN) {

Modified: branches/SAMBA_4_0/source/libcli/auth/gensec_krb5.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/auth/gensec_krb5.c	2005-02-10 05:15:37 UTC (rev 5299)
+++ branches/SAMBA_4_0/source/libcli/auth/gensec_krb5.c	2005-02-10 05:22:53 UTC (rev 5300)
@@ -489,7 +489,7 @@
 	{
 		krb5_data inbuf;
 		krb5_ap_rep_enc_part *repl = NULL;
-		uint8 tok_id[2];
+		uint8_t tok_id[2];
 		DATA_BLOB unwrapped_in;
 
 		if (!gensec_gssapi_parse_krb5_wrap(out_mem_ctx, &in, &unwrapped_in, tok_id)) {
@@ -525,7 +525,7 @@
 		char *principal;
 		DATA_BLOB unwrapped_in;
 		DATA_BLOB unwrapped_out = data_blob(NULL, 0);
-		uint8 tok_id[2];
+		uint8_t tok_id[2];
 
 		if (!in.data) {
 			*out = unwrapped_out;
@@ -689,7 +689,7 @@
 }
 
 static BOOL gensec_krb5_have_feature(struct gensec_security *gensec_security,
-				     uint32 feature)
+				     uint32_t feature)
 {
 	if (feature & GENSEC_FEATURE_SESSION_KEY) {
 		return True;

Modified: branches/SAMBA_4_0/source/libcli/auth/kerberos.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/auth/kerberos.c	2005-02-10 05:15:37 UTC (rev 5299)
+++ branches/SAMBA_4_0/source/libcli/auth/kerberos.c	2005-02-10 05:22:53 UTC (rev 5300)
@@ -26,6 +26,7 @@
 #include "libcli/auth/kerberos.h"
 #include "system/time.h"
 #include "secrets.h"
+#include "pstring.h"
 
 #ifdef HAVE_KRB5
 

Modified: branches/SAMBA_4_0/source/libcli/auth/kerberos_verify.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/auth/kerberos_verify.c	2005-02-10 05:15:37 UTC (rev 5299)
+++ branches/SAMBA_4_0/source/libcli/auth/kerberos_verify.c	2005-02-10 05:22:53 UTC (rev 5300)
@@ -28,6 +28,7 @@
 #include "asn_1.h"
 #include "lib/ldb/include/ldb.h"
 #include "secrets.h"
+#include "pstring.h"
 
 #ifdef HAVE_KRB5
 

Modified: branches/SAMBA_4_0/source/rpc_server/remote/dcesrv_remote.c
===================================================================
--- branches/SAMBA_4_0/source/rpc_server/remote/dcesrv_remote.c	2005-02-10 05:15:37 UTC (rev 5299)
+++ branches/SAMBA_4_0/source/rpc_server/remote/dcesrv_remote.c	2005-02-10 05:22:53 UTC (rev 5300)
@@ -164,7 +164,7 @@
 static NTSTATUS remote_op_init_server(struct dcesrv_context *dce_ctx, const struct dcesrv_endpoint_server *ep_server)
 {
 	int i;
-	char **ifaces = str_list_make(dce_ctx, lp_parm_string(-1,"dcerpc_remote","interfaces"),NULL);
+	const char **ifaces = str_list_make(dce_ctx, lp_parm_string(-1,"dcerpc_remote","interfaces"),NULL);
 
 	if (!ifaces) {
 		DEBUG(3,("remote_op_init_server: no interfaces configured\n"));

Modified: branches/SAMBA_4_0/source/utils/ntlm_auth.c
===================================================================
--- branches/SAMBA_4_0/source/utils/ntlm_auth.c	2005-02-10 05:15:37 UTC (rev 5299)
+++ branches/SAMBA_4_0/source/utils/ntlm_auth.c	2005-02-10 05:22:53 UTC (rev 5300)
@@ -24,8 +24,8 @@
 
 #include "includes.h"
 #include "dynconfig.h"
+#include "system/filesys.h"
 #include "system/passwd.h"
-#include "system/filesys.h"
 #include "lib/cmdline/popt_common.h"
 #include "auth/auth.h"
 #include "libcli/security/security.h"



More information about the samba-cvs mailing list