From 7d7e43d94f26aa6c82b5553ab34d088a33bc99a6 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 8 Jun 2006 03:57:57 +0000 Subject: 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) --- source4/lib/ldb/modules/schema.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/lib/ldb/modules/schema.c') 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: -- cgit