summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2011-01-30 17:55:41 +0100
committerMatthias Dieter Wallnöfer <mdw@samba.org>2011-01-30 19:07:57 +0100
commit7b9ead17f1b6a3698bb5d5eb4a9448f26428dad1 (patch)
treef6f38efcdd722a13862d50b66f7bd44cabccd24d
parent4d66e0ef93177d6029ffcd57299f15e876f25ff9 (diff)
downloadsamba-7b9ead17f1b6a3698bb5d5eb4a9448f26428dad1.tar.gz
samba-7b9ead17f1b6a3698bb5d5eb4a9448f26428dad1.tar.xz
samba-7b9ead17f1b6a3698bb5d5eb4a9448f26428dad1.zip
s4:auth/pyauth.c - temporarily add compatibility code for Python 2.4
This patch has been commited by request of Jelmer. Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sun Jan 30 19:07:57 CET 2011 on sn-devel-104
-rw-r--r--source4/auth/pyauth.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/source4/auth/pyauth.c b/source4/auth/pyauth.c
index 26de2c336d5..2b310bfa1b8 100644
--- a/source4/auth/pyauth.c
+++ b/source4/auth/pyauth.c
@@ -33,6 +33,17 @@
staticforward PyTypeObject PyAuthContext;
+/* There's no Py_ssize_t in 2.4, apparently */
+#if PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION < 5
+typedef int Py_ssize_t;
+typedef inquiry lenfunc;
+typedef intargfunc ssizeargfunc;
+#endif
+
+#ifndef Py_RETURN_NONE
+#define Py_RETURN_NONE return Py_INCREF(Py_None), Py_None
+#endif
+
static PyObject *py_auth_session_get_security_token(PyObject *self, void *closure)
{
struct auth_session_info *session = py_talloc_get_type(self, struct auth_session_info);