1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

Revert "s3:idmap_autorid: use "idmap config <DOMAIN> : rangesize" instead of "autorid:rangesize""

This reverts commit b0b0b625b5.

This sequence of patches needs to be done differently.
This commit is contained in:
Michael Adam 2011-06-10 00:36:27 +02:00
parent c4427f0646
commit 56e94c203f

View File

@ -436,7 +436,6 @@ static NTSTATUS idmap_autorid_initialize(struct idmap_domain *dom)
NTSTATUS status;
uint32_t hwm;
TALLOC_CTX *frame = talloc_stackframe();
char *config_option = NULL;
config = talloc_zero(frame, struct autorid_global_config);
if (!config) {
@ -450,15 +449,8 @@ static NTSTATUS idmap_autorid_initialize(struct idmap_domain *dom)
goto error;
}
config_option = talloc_asprintf(frame, "idmap config %s", dom->name);
if (config_option == NULL) {
DEBUG(0, ("Out of memory!\n"));
status = NT_STATUS_NO_MEMORY;
goto error;
}
config->minvalue = dom->low_id;
config->rangesize = lp_parm_int(-1, config_option, "rangesize", 100000);
config->rangesize = lp_parm_int(-1, "autorid", "rangesize", 100000);
if (config->rangesize < 2000) {
DEBUG(1, ("autorid rangesize must be at least 2000\n"));