summaryrefslogtreecommitdiffstats
path: root/ldb/common/ldb_modules.c
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2008-10-15 14:03:20 -0400
committerSimo Sorce <idra@samba.org>2008-10-16 13:42:22 -0400
commit8b0afbc4aa94628290d74165cab6bec97c7e532b (patch)
tree11d9529563f88a929de1ff44364be0d5864031bd /ldb/common/ldb_modules.c
parentf11b502bf535ff5e09e595dbb95d9bdd5e2e7857 (diff)
downloadsssd-8b0afbc4aa94628290d74165cab6bec97c7e532b.tar.gz
sssd-8b0afbc4aa94628290d74165cab6bec97c7e532b.tar.xz
sssd-8b0afbc4aa94628290d74165cab6bec97c7e532b.zip
Transform the sequence_number operation into a normal extended operation as it should always have been. Make it also async so that it is not a special case.
(Sync from upstream)
Diffstat (limited to 'ldb/common/ldb_modules.c')
-rw-r--r--ldb/common/ldb_modules.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ldb/common/ldb_modules.c b/ldb/common/ldb_modules.c
index 5cc8de29b..2b453bb0c 100644
--- a/ldb/common/ldb_modules.c
+++ b/ldb/common/ldb_modules.c
@@ -517,10 +517,6 @@ int ldb_next_request(struct ldb_module *module, struct ldb_request *request)
FIND_OP(module, extended);
ret = module->ops->extended(module, request);
break;
- case LDB_SEQUENCE_NUMBER:
- FIND_OP(module, sequence_number);
- ret = module->ops->sequence_number(module, request);
- break;
default:
FIND_OP(module, request);
ret = module->ops->request(module, request);