summaryrefslogtreecommitdiff
path: root/source3/lib/ldb/common
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2006-12-20 01:10:04 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:16:38 -0500
commite59e787b4868acffad49b6264e319d585643d5ab (patch)
treeedf25bdd2abeec965f640b130bb6f40369d4ddb7 /source3/lib/ldb/common
parent84cd4d05e0a6e04c2a9fd1f4608a73ee1086a7af (diff)
downloadsamba-e59e787b4868acffad49b6264e319d585643d5ab.tar.gz
samba-e59e787b4868acffad49b6264e319d585643d5ab.tar.bz2
samba-e59e787b4868acffad49b6264e319d585643d5ab.zip
r20269: merge -r20264:20267 from SAMBA_3_0_24
more no previous prototype warnings (This used to be commit 41be182f78762372ae13759ede5d2bd40a71d7f5)
Diffstat (limited to 'source3/lib/ldb/common')
-rw-r--r--source3/lib/ldb/common/ldb_msg.c4
-rw-r--r--source3/lib/ldb/common/ldb_parse.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/source3/lib/ldb/common/ldb_msg.c b/source3/lib/ldb/common/ldb_msg.c
index 65d1ecacb7..bf217d2787 100644
--- a/source3/lib/ldb/common/ldb_msg.c
+++ b/source3/lib/ldb/common/ldb_msg.c
@@ -35,6 +35,10 @@
#include "includes.h"
#include "ldb/include/includes.h"
+void ldb_dump_results(struct ldb_context *ldb, struct ldb_result *result, FILE *f);
+int ldb_msg_element_compare_name(struct ldb_message_element *el1,
+ struct ldb_message_element *el2);
+
/*
create a new ldb_message in a given memory context (NULL for top level)
*/
diff --git a/source3/lib/ldb/common/ldb_parse.c b/source3/lib/ldb/common/ldb_parse.c
index 26f88769e6..5c5709f929 100644
--- a/source3/lib/ldb/common/ldb_parse.c
+++ b/source3/lib/ldb/common/ldb_parse.c
@@ -45,6 +45,8 @@
#include "ldb/include/includes.h"
#include "system/locale.h"
+struct ldb_val ldb_binary_decode(void *mem_ctx, const char *str);
+
/*
a filter is defined by:
<filter> ::= '(' <filtercomp> ')'