diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-01 22:30:23 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-01 13:05:04 +0000 |
commit | a386ca85590a0ee18c1d98c80c6b1ec4faab31a7 (patch) | |
tree | 8fef6fd8fa4ed2bfbe1cd822f1428164c3858f08 /source4/lib/ldb/modules/asq.c | |
parent | 8366bb495abefe5cc1d0cb120530a1933d942fbf (diff) | |
download | samba-a386ca85590a0ee18c1d98c80c6b1ec4faab31a7.tar.gz samba-a386ca85590a0ee18c1d98c80c6b1ec4faab31a7.tar.bz2 samba-a386ca85590a0ee18c1d98c80c6b1ec4faab31a7.zip |
s4-ldb: enable ldb module version checking
Diffstat (limited to 'source4/lib/ldb/modules/asq.c')
-rw-r--r-- | source4/lib/ldb/modules/asq.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/ldb/modules/asq.c b/source4/lib/ldb/modules/asq.c index 45a733bd13..ebfafb9556 100644 --- a/source4/lib/ldb/modules/asq.c +++ b/source4/lib/ldb/modules/asq.c @@ -32,6 +32,7 @@ * Author: Simo Sorce */ +#include "ldb_includes.h" #include "ldb_module.h" struct asq_context { @@ -406,7 +407,8 @@ static const struct ldb_module_ops ldb_asq_module_ops = { .init_context = asq_init }; -int ldb_asq_init(const char *ldb_version) +int ldb_asq_init(const char *version) { + LDB_MODULE_CHECK_VERSION(version); return ldb_register_module(&ldb_asq_module_ops); } |