summaryrefslogtreecommitdiff
path: root/source4/dsdb/samdb/ldb_modules/dsdb_cache.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-11-02 10:41:28 +1100
committerAndrew Tridgell <tridge@samba.org>2010-11-03 07:43:57 +1100
commit4a08b2d172c144f831b8c6a282ab990142b9b13d (patch)
tree976fe4d5413d75d08e7185e4c4ce38812596ac13 /source4/dsdb/samdb/ldb_modules/dsdb_cache.c
parent8a2142773f3be50734a1ae51898e18dcaa26db28 (diff)
downloadsamba-4a08b2d172c144f831b8c6a282ab990142b9b13d.tar.gz
samba-4a08b2d172c144f831b8c6a282ab990142b9b13d.tar.bz2
samba-4a08b2d172c144f831b8c6a282ab990142b9b13d.zip
s4-dsdb: removed the use of ldb_private.h from s4
this will allow s4 to use a system version of ldb
Diffstat (limited to 'source4/dsdb/samdb/ldb_modules/dsdb_cache.c')
-rw-r--r--source4/dsdb/samdb/ldb_modules/dsdb_cache.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/dsdb_cache.c b/source4/dsdb/samdb/ldb_modules/dsdb_cache.c
deleted file mode 100644
index b252fff2a4..0000000000
--- a/source4/dsdb/samdb/ldb_modules/dsdb_cache.c
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- Unix SMB/CIFS mplementation.
-
- The Module that loads some DSDB related things
- into memory. E.g. it loads the dsdb_schema structure
-
- Copyright (C) Stefan Metzmacher 2007
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-*/
-
-#include "includes.h"
-#include "lib/ldb/include/ldb.h"
-#include "lib/ldb/include/ldb_errors.h"
-#include "lib/ldb/include/ldb_private.h"
-#include "dsdb/samdb/samdb.h"
-#include "librpc/gen_ndr/ndr_misc.h"
-#include "librpc/gen_ndr/ndr_drsuapi.h"
-#include "librpc/gen_ndr/ndr_drsblobs.h"
-
-static int dsdb_cache_init(struct ldb_module *module)
-{
- /* TODO: load the schema */
- return ldb_next_init(module);
-}
-
-static const struct ldb_module_ops ldb_dsdb_cache_module_ops = {
- .name = "dsdb_cache",
- .init_context = dsdb_cache_init
-};
-
-int ldb_dsdb_cache_module_init(const char *version)
-{
- LDB_MODULE_CHECK_VERSION(version);
- return ldb_register_module(&ldb_dsdb_cache_module_ops);
-}