summaryrefslogtreecommitdiff
path: root/lib/util/util_ldb.h
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mdw@samba.org>2010-10-17 10:37:23 +0200
committerMatthias Dieter Wallnöfer <mdw@samba.org>2010-10-17 09:40:13 +0000
commit8a2ce5c47cee499f90b125ebde83de5f9f1a9aa0 (patch)
tree0bb2994e76e1a69316a057def70e4986b58c1086 /lib/util/util_ldb.h
parent39bd4ce92055f79e55e2f228537324d7f1401cc0 (diff)
downloadsamba-8a2ce5c47cee499f90b125ebde83de5f9f1a9aa0.tar.gz
samba-8a2ce5c47cee499f90b125ebde83de5f9f1a9aa0.tar.bz2
samba-8a2ce5c47cee499f90b125ebde83de5f9f1a9aa0.zip
s4:remove "util_ldb" submodule and integrate the three gendb_* calls in "dsdb/common/util.c"
They're only in use by SAMDB code. Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sun Oct 17 09:40:13 UTC 2010 on sn-devel-104
Diffstat (limited to 'lib/util/util_ldb.h')
-rw-r--r--lib/util/util_ldb.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/lib/util/util_ldb.h b/lib/util/util_ldb.h
deleted file mode 100644
index f9eb028916..0000000000
--- a/lib/util/util_ldb.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef __LIB_UTIL_UTIL_LDB_H__
-#define __LIB_UTIL_UTIL_LDB_H__
-
-struct ldb_dn;
-
-/* The following definitions come from lib/util/util_ldb.c */
-
-int gendb_search_v(struct ldb_context *ldb,
- TALLOC_CTX *mem_ctx,
- struct ldb_dn *basedn,
- struct ldb_message ***msgs,
- const char * const *attrs,
- const char *format,
- va_list ap) PRINTF_ATTRIBUTE(6,0);
-int gendb_search(struct ldb_context *ldb,
- TALLOC_CTX *mem_ctx,
- struct ldb_dn *basedn,
- struct ldb_message ***res,
- const char * const *attrs,
- const char *format, ...) PRINTF_ATTRIBUTE(6,7);
-int gendb_search_dn(struct ldb_context *ldb,
- TALLOC_CTX *mem_ctx,
- struct ldb_dn *dn,
- struct ldb_message ***res,
- const char * const *attrs);
-int gendb_add_ldif(struct ldb_context *ldb, const char *ldif_string);
-char *wrap_casefold(void *context, void *mem_ctx, const char *s, size_t n);
-
-#endif /* __LIB_UTIL_UTIL_LDB_H__ */