1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00

r7784: give an error in ldb_tdb for invalid modify flags. The "whenChanged"

bug was being silently ignored with the tdb backend because of this
bug. A case where the ldap backend was right, and the tdb backend was
wrong!
This commit is contained in:
Andrew Tridgell 2005-06-20 08:50:53 +00:00 committed by Gerald (Jerry) Carter
parent f267e9d5b7
commit ddb26db763

View File

@ -679,6 +679,9 @@ int ltdb_modify_internal(struct ldb_module *module, const struct ldb_message *ms
}
}
break;
default:
ltdb->last_err_string = "Invalid ldb_modify flags";
goto failed;
}
}