summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/ldb.i
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-12-16 16:23:10 +1100
committerAndrew Bartlett <abartlet@samba.org>2008-12-16 16:23:10 +1100
commit5f20d219c39311126108ba74d8072814ecabc8fe (patch)
tree69c82c9e841a3cc130770a30fc08dd1d78992926 /source4/lib/ldb/ldb.i
parent9057c2522adf8d17a07fd3c747d7fed06a523af6 (diff)
parent4380a374c1dec46ad77939604e548f0c79d9e2ec (diff)
downloadsamba-5f20d219c39311126108ba74d8072814ecabc8fe.tar.gz
samba-5f20d219c39311126108ba74d8072814ecabc8fe.tar.bz2
samba-5f20d219c39311126108ba74d8072814ecabc8fe.zip
Merge branch 'master' of ssh://git.samba.org/data/git/samba into abartlet-devel
Diffstat (limited to 'source4/lib/ldb/ldb.i')
-rw-r--r--source4/lib/ldb/ldb.i4
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/ldb/ldb.i b/source4/lib/ldb/ldb.i
index 6ecbfbfa08..0f05c1fbab 100644
--- a/source4/lib/ldb/ldb.i
+++ b/source4/lib/ldb/ldb.i
@@ -190,6 +190,7 @@ PyObject *ldb_val_to_py_object(struct ldb_context *ldb_ctx,
}
%apply const char * const *NULL_STR_LIST { const char * const *attrs }
+%apply const char * const *NULL_STR_LIST { const char * const *options }
%apply const char * const *NULL_STR_LIST { const char * const *control_strings }
#endif
@@ -711,9 +712,10 @@ typedef struct ldb_context {
%feature("docstring") connect "S.connect(url,flags=0,options=None) -> None\n" \
"Connect to a LDB URL.";
ldb_error connect(const char *url, unsigned int flags = 0,
- const char *options[] = NULL);
+ const char *const *options = NULL);
~ldb() { talloc_free($self); }
+
ldb_error search_ex(TALLOC_CTX *mem_ctx,
ldb_dn *base = NULL,
enum ldb_scope scope = LDB_SCOPE_DEFAULT,