From 19f8dc9580a772620a39b09585e8c7f8f5deac13 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 21 Oct 2010 17:55:24 +1100 Subject: s4-ldb: make ldb_options_find() public we need to make this symbol public to allow for -Wl,-no-undefined, as otherwise the pyldb module can't find the symbol when it creates the module --- source4/lib/ldb/common/ldb_options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/ldb/common') diff --git a/source4/lib/ldb/common/ldb_options.c b/source4/lib/ldb/common/ldb_options.c index f806057eb6..f07f393562 100644 --- a/source4/lib/ldb/common/ldb_options.c +++ b/source4/lib/ldb/common/ldb_options.c @@ -46,7 +46,7 @@ For the NAME form, returns a pointer to an empty string (thus allowing for boolean options). */ -_PRIVATE_ const char *ldb_options_find(struct ldb_context *ldb, const char *options[], +const char *ldb_options_find(struct ldb_context *ldb, const char *options[], const char *option_name) { size_t len = strlen(option_name); -- cgit