1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-30 20:23:49 +03:00

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 commit is contained in:
Tim Potter
2006-06-08 03:57:57 +00:00
committed by Gerald (Jerry) Carter
parent 8f44d0a2d6
commit d44ee8c43b
3 changed files with 21 additions and 21 deletions

View File

@@ -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: