summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-21 17:55:24 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-21 19:03:27 +1100
commit19f8dc9580a772620a39b09585e8c7f8f5deac13 (patch)
tree1771dcf8649ea63c777138f8e1df3703e54b3138 /source4/lib/ldb/common
parentdc729c62eaadff081dea28a4f8769af45c83c4cf (diff)
downloadsamba-19f8dc9580a772620a39b09585e8c7f8f5deac13.tar.gz
samba-19f8dc9580a772620a39b09585e8c7f8f5deac13.tar.bz2
samba-19f8dc9580a772620a39b09585e8c7f8f5deac13.zip
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
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r--source4/lib/ldb/common/ldb_options.c2
1 files changed, 1 insertions, 1 deletions
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);