The status information from path selectors that apply to paths are
repeated for each path. Current code assumed this info appears
only once per path group.
Stefan Bader, IBM
{
char * word;
char * p;
- int i, j;
+ int i, j, k;
int num_feature_args;
int num_hwhandler_args;
int num_pg;
pp->failcount = atoi(word);
FREE(word);
+
+ /*
+ * selector args
+ */
+ for (k = 0; k < num_pg_args; k++)
+ p += get_word(p, NULL);
}
- /*
- * selector args
- */
- for (j = 0; j < num_pg_args; j++)
- p += get_word(p, NULL);
}
return 0;
}