ldb: Remove unnecessary declaration
authorJo Sutton <josutton@catalyst.net.nz>
Wed, 24 Apr 2024 00:31:36 +0000 (12:31 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 24 Apr 2024 05:16:29 +0000 (05:16 +0000)
This declaration is a holdā€over from the Python 2 module initialization
pattern.

Signed-off-by: Jo Sutton <josutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
lib/ldb/pyldb.c

index d54a952ac011138115035c414d1655f2f2caac52..53b855990bbf0fb86a93939d5898cbadba604888 100644 (file)
@@ -57,7 +57,6 @@ struct py_ldb_search_iterator_reply {
        PyObject *obj;
 };
 
-void initldb(void);
 static PyObject *PyLdbMessage_FromMessage(struct ldb_message *msg, PyLdbObject *pyldb);
 static PyObject *PyExc_LdbError;