summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/modules/schema.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2006-06-08 03:57:57 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:08:58 -0500
commit7d7e43d94f26aa6c82b5553ab34d088a33bc99a6 (patch)
tree285f41bbd1841cf0d536b6a26f86d89fb81633e5 /source4/lib/ldb/modules/schema.c
parent43e9053d95dda36fc43710ac58db9dfff8e6ca03 (diff)
downloadsamba-7d7e43d94f26aa6c82b5553ab34d088a33bc99a6.tar.gz
samba-7d7e43d94f26aa6c82b5553ab34d088a33bc99a6.tar.bz2
samba-7d7e43d94f26aa6c82b5553ab34d088a33bc99a6.zip
r16090: Fix standalone build after the rename of enum ldb_request_type in
r15944. Hey idra I think a better rename would be to keep the LDB_REQ suffix here to remain consistent with the other enums (e.g ldb_reply_type, ldb_async_wait_type and ldb_async_state). (This used to be commit d44ee8c43bd8f6f978330a8ded8bf30ffad494d6)
Diffstat (limited to 'source4/lib/ldb/modules/schema.c')
-rw-r--r--source4/lib/ldb/modules/schema.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/modules/schema.c b/source4/lib/ldb/modules/schema.c
index 73b07023da..556a35060d 100644
--- a/source4/lib/ldb/modules/schema.c
+++ b/source4/lib/ldb/modules/schema.c
@@ -465,10 +465,10 @@ static int schema_request(struct ldb_module *module, struct ldb_request *req)
{
switch (req->operation) {
- case LDB_REQ_ADD:
+ case LDB_ADD:
return schema_add(module, req);
- case LDB_REQ_MODIFY:
+ case LDB_MODIFY:
return schema_modify(module, req);
default: