[SCM] Samba Shared Repository - branch v4-0-test updated - release-4-0-0alpha3-160-g88013ca

Jelmer Vernooij jelmer at samba.org
Tue Apr 15 10:16:05 GMT 2008


The branch, v4-0-test has been updated
       via  88013ca9775a6ff5e5a393f9d8238dbcd197f26f (commit)
      from  a039acb9156b3855e8565ce6d1ca078aea18a349 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v4-0-test


- Log -----------------------------------------------------------------
commit 88013ca9775a6ff5e5a393f9d8238dbcd197f26f
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Tue Apr 15 12:15:43 2008 +0200

    Fix warnings.

-----------------------------------------------------------------------

Summary of changes:
 source/libcli/ldap/ldap_ndr.h        |    2 ++
 source/scripting/python/uuidmodule.c |    4 ++--
 source/torture/ndr/netlogon.c        |    4 ++--
 3 files changed, 6 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/libcli/ldap/ldap_ndr.h b/source/libcli/ldap/ldap_ndr.h
index dfbb723..ee1f702 100644
--- a/source/libcli/ldap/ldap_ndr.h
+++ b/source/libcli/ldap/ldap_ndr.h
@@ -1,6 +1,8 @@
 #ifndef __LIBCLI_LDAP_LDAP_NDR_H__
 #define __LIBCLI_LDAP_LDAP_NDR_H__
 
+#include "librpc/gen_ndr/ndr_misc.h"
+
 char *ldap_encode_ndr_uint32(TALLOC_CTX *mem_ctx, uint32_t value);
 char *ldap_encode_ndr_dom_sid(TALLOC_CTX *mem_ctx, const struct dom_sid *sid);
 char *ldap_encode_ndr_GUID(TALLOC_CTX *mem_ctx, struct GUID *guid);
diff --git a/source/scripting/python/uuidmodule.c b/source/scripting/python/uuidmodule.c
index cd9a1cb..18cfb6c 100644
--- a/source/scripting/python/uuidmodule.c
+++ b/source/scripting/python/uuidmodule.c
@@ -27,7 +27,7 @@ static PyObject *uuid_random(PyObject *self, PyObject *args)
 	PyObject *pyobj;
 	char *str;
 
-	if (!PyArg_ParseTuple(args, (char *)""))
+	if (!PyArg_ParseTuple(args, ""))
 	        return NULL;
 
 	guid = GUID_random();
@@ -52,7 +52,7 @@ static PyMethodDef methods[] = {
 
 void inituuid(void)
 {
-	PyObject *mod = Py_InitModule3((char *)"uuid", methods, "UUID helper routines");
+	PyObject *mod = Py_InitModule3("uuid", methods, "UUID helper routines");
 	if (mod == NULL)
 		return;
 }
diff --git a/source/torture/ndr/netlogon.c b/source/torture/ndr/netlogon.c
index f498335..a5221f7 100644
--- a/source/torture/ndr/netlogon.c
+++ b/source/torture/ndr/netlogon.c
@@ -80,7 +80,7 @@ static const uint8_t netrserverreqchallenge_in_data[] = {
 };
 
 static bool netrserverreqchallenge_in_check(struct torture_context *tctx,
-											struct netr_ServerReqChallenge *r)
+					    struct netr_ServerReqChallenge *r)
 {
 	uint8_t cred_expected[8] = { 0xa3, 0x2c, 0xa2, 0x95, 0x40, 0xcc, 0xb7, 0xbb };
 	torture_assert_str_equal(tctx, r->in.server_name, "\\\\NATIVE-DC.NATIVE.BASE", "server name");
@@ -95,7 +95,7 @@ static const uint8_t netrserverreqchallenge_out_data[] = {
 };
 
 static bool netrserverreqchallenge_out_check(struct torture_context *tctx,
-											struct netr_ServerReqChallenge *r)
+					     struct netr_ServerReqChallenge *r)
 {
 	uint8_t cred_expected[8] = { 0x22, 0xfc, 0xc1, 0x17, 0xc0, 0xae, 0x27, 0x8e };
 	torture_assert_mem_equal(tctx, cred_expected, r->out.credentials->data, 8, "credentials");


-- 
Samba Shared Repository


More information about the samba-cvs mailing list