1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00

Fix bug after reprocessing swig files with newer version of SWIG.

This commit is contained in:
Jelmer Vernooij 2008-05-23 03:20:37 +02:00
parent bda223a49e
commit 2155d76646
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ AC_ARG_VAR([PYTHON_VERSION],[The installed Python
will be appended to the Python interpreter
canonical name.])
AC_PROG_SWIG(1.3.31)
AC_PROG_SWIG(1.3.35)
AC_PATH_PROG([PYTHON],[python[$PYTHON_VERSION]])
if test -z "$PYTHON"; then

View File

@ -73,15 +73,15 @@ class Ldb(ldb.Ldb):
self.set_modules_dir(default_ldb_modules_dir)
if credentials is not None:
self.set_credentials(self, credentials)
self.set_credentials(credentials)
if session_info is not None:
self.set_session_info(self, session_info)
self.set_session_info(session_info)
assert misc.ldb_register_samba_handlers(self) == 0
if lp is not None:
self.set_loadparm(self, lp)
self.set_loadparm(lp)
def msg(l,text):
print text