From e241563472f2b36a09399866a2ccee85a4d34580 Mon Sep 17 00:00:00 2001 From: Lars Müller Date: Sun, 23 Apr 2006 15:39:32 +0000 Subject: r15180: Use tdb_lock_bystring_with_timeout(). (This used to be commit 1ff6ae68b66ec3c78abbadd1fb9d50e50fc247dd) --- source3/python/py_tdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/python/py_tdb.c b/source3/python/py_tdb.c index f73aa0ba8b..322d367eda 100644 --- a/source3/python/py_tdb.c +++ b/source3/python/py_tdb.c @@ -494,7 +494,7 @@ PyObject *py_tdb_hnd_lock_bystring(PyObject *self, PyObject *args) if (!PyArg_ParseTuple(args, "s|i", &s, &timeout)) return NULL; - result = tdb_lock_bystring(obj->tdb, s, timeout); + result = tdb_lock_bystring_with_timeout(obj->tdb, s, timeout); return PyInt_FromLong(result != -1); } -- cgit