From: Jelmer Vernooij Date: Thu, 23 Apr 2009 16:59:37 +0000 (+0200) Subject: Provide a ldb_global_init() function for compatibility with older versions of LDB X-Git-Tag: tdb-1.1.5~914^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af6316d1500cfcedd5fd59ed0ddbba9aec9c3756;p=thirdparty%2Fsamba.git Provide a ldb_global_init() function for compatibility with older versions of LDB (including the one in Samba 3). --- diff --git a/source4/lib/ldb/common/ldb.c b/source4/lib/ldb/common/ldb.c index 86ce2069a51..64ad6832dbb 100644 --- a/source4/lib/ldb/common/ldb.c +++ b/source4/lib/ldb/common/ldb.c @@ -1430,3 +1430,9 @@ void *ldb_get_opaque(struct ldb_context *ldb, const char *name) } return NULL; } + +int ldb_global_init(void) +{ + /* Provided for compatibility with some older versions of ldb */ + return 0; +}