summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/ldb_wrap.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-03-01 21:18:12 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-03-01 21:18:12 +0100
commit830051b494ea52475e9349e6908ff8576a990051 (patch)
tree853e81eeb16622a879995c7fd4e368b31066b80e /source4/lib/ldb/ldb_wrap.c
parent748f1c09629b251176a36f24c871b045192206ed (diff)
downloadsamba-830051b494ea52475e9349e6908ff8576a990051.tar.gz
samba-830051b494ea52475e9349e6908ff8576a990051.tar.bz2
samba-830051b494ea52475e9349e6908ff8576a990051.zip
Remove unused variable, fix (80, 'Other error') exceptions from ldb python bindings
(This used to be commit 2303063cbd2e65580618124ef8ecf42867d2b952)
Diffstat (limited to 'source4/lib/ldb/ldb_wrap.c')
-rw-r--r--source4/lib/ldb/ldb_wrap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/ldb_wrap.c b/source4/lib/ldb/ldb_wrap.c
index 937cb7e47c..7886778b3a 100644
--- a/source4/lib/ldb/ldb_wrap.c
+++ b/source4/lib/ldb/ldb_wrap.c
@@ -4707,7 +4707,6 @@ SWIGINTERN PyObject *_wrap_Ldb_add(PyObject *SWIGUNUSEDPARM(self), PyObject *arg
}
arg1 = (ldb *)(argp1);
{
- ldb_error ret;
int dict_pos, msg_pos;
PyObject *key, *value;
ldb_msg_element *msgel;
@@ -4718,7 +4717,8 @@ SWIGINTERN PyObject *_wrap_Ldb_add(PyObject *SWIGUNUSEDPARM(self), PyObject *arg
msg_pos = dict_pos = 0;
while (PyDict_Next(obj1, &dict_pos, &key, &value)) {
if (!strcmp(PyString_AsString(key), "dn")) {
- if (ldb_dn_from_pyobject(arg2, value, obj0, &arg2->dn) != 0) {
+ /* using argp0 (magic SWIG value) here is a hack */
+ if (ldb_dn_from_pyobject(arg2, value, argp1, &arg2->dn) != 0) {
SWIG_exception(SWIG_TypeError, "unable to import dn object");
}
} else {