[SCM] Samba Shared Repository - branch v4-0-test updated - release-4-0-0alpha2-391-ge179db6

Jelmer Vernooij jelmer at samba.org
Sun Jan 13 05:09:54 GMT 2008


The branch, v4-0-test has been updated
       via  e179db6d0fcf093082f2ad441980a2bb77ac6b17 (commit)
      from  9ad2de6e9900aadc3171c5376972ce4d3ed3fb24 (commit)

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


- Log -----------------------------------------------------------------
commit e179db6d0fcf093082f2ad441980a2bb77ac6b17
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Sun Jan 13 06:07:20 2008 +0100

    python: Avoid PyMODINIT_FUNC because it doesn't exist in older pythons.

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

Summary of changes:
 source/scripting/python/uuidmodule.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/scripting/python/uuidmodule.c b/source/scripting/python/uuidmodule.c
index 9b952d3..e05b286 100644
--- a/source/scripting/python/uuidmodule.c
+++ b/source/scripting/python/uuidmodule.c
@@ -47,7 +47,7 @@ static PyMethodDef methods[] = {
 	{ NULL, NULL }
 };
 
-PyMODINIT_FUNC inituuid(void)
+void inituuid(void)
 {
 	PyObject *mod = Py_InitModule3((char *)"uuid", methods, "UUID helper routines");
 	if (mod == NULL)


-- 
Samba Shared Repository


More information about the samba-cvs mailing list