diff options
author | Simo Sorce <idra@samba.org> | 2009-01-30 16:31:19 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2009-01-30 17:07:25 -0500 |
commit | d4aeed879b21db41643250a23b1009b543e6c99f (patch) | |
tree | 8b9d26d91beb4846f443c1298649487c0461bf62 /source4/lib/ldb | |
parent | 4519eae158e7821dcd2f818eea830cfcdd4a0105 (diff) | |
download | samba-d4aeed879b21db41643250a23b1009b543e6c99f.tar.gz samba-d4aeed879b21db41643250a23b1009b543e6c99f.tar.xz samba-d4aeed879b21db41643250a23b1009b543e6c99f.zip |
Fix all other modules to use ldb_module.h instead of ldb_private.h
The only 2 modules escaping the rule so far are rootdse and partitions
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r-- | source4/lib/ldb/include/ldb.h | 3 | ||||
-rw-r--r-- | source4/lib/ldb/include/ldb_private.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h index 68146499afb..6990397a741 100644 --- a/source4/lib/ldb/include/ldb.h +++ b/source4/lib/ldb/include/ldb.h @@ -695,6 +695,9 @@ enum ldb_sequence_type { LDB_SEQ_NEXT }; +#define LDB_SEQ_GLOBAL_SEQUENCE 0x01 +#define LDB_SEQ_TIMESTAMP_SEQUENCE 0x02 + struct ldb_seqnum_request { enum ldb_sequence_type type; }; diff --git a/source4/lib/ldb/include/ldb_private.h b/source4/lib/ldb/include/ldb_private.h index 10977088e5e..2e6590860ff 100644 --- a/source4/lib/ldb/include/ldb_private.h +++ b/source4/lib/ldb/include/ldb_private.h @@ -160,9 +160,6 @@ char *ldb_casefold_default(void *context, void *mem_ctx, const char *s, size_t n void ldb_dump_results(struct ldb_context *ldb, struct ldb_result *result, FILE *f); -#define LDB_SEQ_GLOBAL_SEQUENCE 0x01 -#define LDB_SEQ_TIMESTAMP_SEQUENCE 0x02 - /* The following definitions come from lib/ldb/common/ldb_modules.c */ |