Исправлено сохранение ключей

pull/24/head
Igor Belitskiy 2 years ago
parent 5b6e074d8c
commit 2117cb9dea

@ -155,12 +155,20 @@ char* save_format_key(config_u_g_p* config, int index) {
char* save_format_str_value(config_u_g_p* config, int index) { char* save_format_str_value(config_u_g_p* config, int index) {
char* value = yon_char_new(""); char* value = NULL;
value = philos_format_cfg_str_size_memory(value, config->soft_restriction_size,config->soft_restriction_size_pow); if (config->soft_restriction_size) {
value = yon_char_unite(value, ":", NULL); value = yon_char_unite(philos_format_cfg_str_size_memory("", config->soft_restriction_size,config->soft_restriction_size_pow), NULL);
value = philos_format_cfg_str_size_memory(value, config->severe_limitation_size,config->severe_limitation_size_pow); }
value = yon_char_unite(value, ":", NULL); else {
value = yon_char_unite(value, yon_char_from_int(config->soft_restriction_file), NULL); value = yon_char_new("0");
}
if (config->severe_limitation_size) {
value = yon_char_unite(value, ":", philos_format_cfg_str_size_memory("", config->severe_limitation_size,config->severe_limitation_size_pow), NULL);
}
else {
value = yon_char_unite(value,":0", NULL);
}
value = yon_char_unite(value, ":", yon_char_from_int(config->soft_restriction_file), NULL);
value = yon_char_unite(value, ":", NULL); value = yon_char_unite(value, ":", NULL);
value = yon_char_unite(value, yon_char_from_int(config->severe_limitation_file), NULL); value = yon_char_unite(value, yon_char_from_int(config->severe_limitation_file), NULL);
value = yon_char_unite(value, ":", NULL); value = yon_char_unite(value, ":", NULL);

Loading…
Cancel
Save