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

SVN revision: 1802
This commit is contained in:
Stefan Ritt 2007-03-01 20:35:29 +00:00
parent f99410d04f
commit 7dc324c10f

View File

@ -2893,8 +2893,9 @@ int parse_config_file(char *file_name)
} }
/* sort parameter */ /* sort parameter */
qsort(lb_config[n_lb_config].config_param, lb_config[n_lb_config].n_params, sizeof(CONFIG_PARAM), // outcommented: not needed, might screw up group ordering
param_compare); //qsort(lb_config[n_lb_config].config_param, lb_config[n_lb_config].n_params, sizeof(CONFIG_PARAM),
// param_compare);
n_lb_config++; n_lb_config++;
index++; index++;