Removed parameter sorting (did screw up group ordering, not really needed)

SVN revision: 1802
This commit is contained in:
2007-03-01 20:35:29 +00:00
parent f99410d04f
commit 7dc324c10f
+3 -2
View File
@@ -2893,8 +2893,9 @@ int parse_config_file(char *file_name)
}
/* sort parameter */
qsort(lb_config[n_lb_config].config_param, lb_config[n_lb_config].n_params, sizeof(CONFIG_PARAM),
param_compare);
// outcommented: not needed, might screw up group ordering
//qsort(lb_config[n_lb_config].config_param, lb_config[n_lb_config].n_params, sizeof(CONFIG_PARAM),
// param_compare);
n_lb_config++;
index++;