It was originally added to dict-db and no other backend uses it. With dict-db
removed, there is no need to keep it.
struct dict_settings dict_set = {
.username = "",
.base_dir = global_auth_settings->base_dir,
- .value_type = DICT_DATA_TYPE_STRING,
.event_parent = auth_event,
};
if (dict_init(db->set.local_validation_key_dict, &dict_set,
uri = strlist[i+1];
i_zero(&dict_set);
- dict_set.value_type = conn->value_type;
dict_set.username = conn->username;
dict_set.base_dir = dict_settings->base_dir;
dict_set.event_parent = conn->conn.event;
dict->dict = *driver;
dict->conn.dict = dict;
dict->conn.conn.event_parent = set->event_parent;
- dict->value_type = set->value_type;
dict->username = i_strdup(set->username);
dict->idle_msecs = idle_msecs;
dict->warn_slow_msecs = warn_slow_msecs;
};
struct dict_settings {
- enum dict_data_type value_type;
const char *username;
const char *base_dir;
/* home directory for the user, if known */
};
struct dict_settings dict_set = {
.username = "testuser",
- .value_type = DICT_DATA_TYPE_STRING,
.base_dir = ".",
};