Changeset 12571 for trunk/ppStats/src/ppStatsSetupFromRecipe.c
- Timestamp:
- Mar 23, 2007, 12:48:24 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ppStats/src/ppStatsSetupFromRecipe.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppStats/src/ppStatsSetupFromRecipe.c
r9539 r12571 49 49 psString valueString; 50 50 while ((valueString = psListGetAndIncrement(valuesIter))) { 51 psListAdd(target, PS_LIST_TAIL, valueString); 51 // Remove the default _UNDEF entries in the recipe, which come from the limitation of the metadata 52 // config language to have an empty MULTI, combined with the constraint that higher-level recipes 53 // aren't allowed to add new values but only change what already exists. 54 if (strcmp(valueString, "_UNDEF") != 0) { 55 psListAdd(target, PS_LIST_TAIL, valueString); 56 } 52 57 } 53 58 psFree(valuesIter); … … 58 63 return; 59 64 } 65 60 66 61 67 ppStatsData *ppStatsSetupFromRecipe(ppStatsData *data, // Data for running ppStats
Note:
See TracChangeset
for help on using the changeset viewer.
