From c79f37fa1aa0b7414d184ddb14f2db168cbd2568 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 7 Jun 2006 22:03:06 +0000 Subject: r16084: Add private prototype for new ldb_connect_backend() function. Andrew Bartlett (This used to be commit 684126223046d88d1ff446767ab6783f6391b50c) --- source4/lib/ldb/include/ldb_private.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/lib/ldb/include/ldb_private.h') diff --git a/source4/lib/ldb/include/ldb_private.h b/source4/lib/ldb/include/ldb_private.h index 6d017d5cc1..a10c343352 100644 --- a/source4/lib/ldb/include/ldb_private.h +++ b/source4/lib/ldb/include/ldb_private.h @@ -130,6 +130,11 @@ struct ldb_context { */ #define ldb_oom(ldb) ldb_debug_set(ldb, LDB_DEBUG_FATAL, "ldb out of memory at %s:%d\n", __FILE__, __LINE__) +/* The following definitions come from lib/ldb/common/ldb.c */ + +int ldb_connect_backend(struct ldb_context *ldb, const char *url, unsigned int flags, const char *options[], + struct ldb_module **backend_module); + /* The following definitions come from lib/ldb/common/ldb_modules.c */ int ldb_load_modules(struct ldb_context *ldb, const char *options[]); -- cgit