diff options
author | Matthieu Patou <mat@matws.net> | 2009-09-23 00:51:25 +0400 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-10-02 12:45:00 +0200 |
commit | 977a0aa273cf355408c51639bc1b30cab41f5642 (patch) | |
tree | 158383b763decaafe3f2d20fe386843a74b0d845 /source4/lib | |
parent | 8d7a987766b99e34b965b56bd2b1792ca7e95b5f (diff) | |
download | samba-977a0aa273cf355408c51639bc1b30cab41f5642.tar.gz samba-977a0aa273cf355408c51639bc1b30cab41f5642.tar.bz2 samba-977a0aa273cf355408c51639bc1b30cab41f5642.zip |
pythonbindings: allow add() to have an array of controls as second parameter
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/ldb/pyldb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/lib/ldb/pyldb.c b/source4/lib/ldb/pyldb.c index 4d7a34c04f..1d47d6ff1f 100644 --- a/source4/lib/ldb/pyldb.c +++ b/source4/lib/ldb/pyldb.c @@ -656,6 +656,7 @@ static PyObject *py_ldb_modify(PyLdbObject *self, PyObject *args) Py_RETURN_NONE; } + static PyObject *py_ldb_add(PyLdbObject *self, PyObject *args) { PyObject *py_msg; |