Changeset 10441
- Timestamp:
- Dec 4, 2006, 11:55:52 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
ppMerge/src/ppMergeConfig.c (modified) (1 diff)
-
ppMerge/src/ppMergeOptions.c (modified) (1 diff)
-
ppNorm/src/ppNormCalc.c (modified) (1 diff)
-
ppStats/src/ppStatsStandAlone.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppMerge/src/ppMergeConfig.c
r9737 r10441 25 25 pmConfig *ppMergeConfig(int argc, char **argv) 26 26 { 27 pmConfig *config = pmConfigRead(&argc, argv );27 pmConfig *config = pmConfigRead(&argc, argv, PPMERGE_RECIPE); 28 28 // Load the site-wide configuration information 29 29 if (! config) { -
trunk/ppMerge/src/ppMergeOptions.c
r10270 r10441 118 118 } 119 119 120 // Get the recipes 121 if (!config->recipes && !pmConfigReadRecipes(config)) { 122 psError(PS_ERR_IO, false, "Unable to read recipes.\n"); 123 exit(EXIT_FAILURE); 124 } 120 // we must have the recipes by this point 121 assert (config->recipes); 125 122 126 123 // Now we can read the recipe -
trunk/ppNorm/src/ppNormCalc.c
r9738 r10441 23 23 { 24 24 psLibInit(NULL); 25 pmConfig *config = pmConfigRead(&argc, argv );25 pmConfig *config = pmConfigRead(&argc, argv, NULL); 26 26 psFree(config); 27 27 -
trunk/ppStats/src/ppStatsStandAlone.c
r8864 r10441 21 21 22 22 // Parse the configuration and arguments 23 pmConfig *config = pmConfigRead(&argc, argv );23 pmConfig *config = pmConfigRead(&argc, argv, PPSTATS_RECIPE); 24 24 25 25 // Get the options, open the files
Note:
See TracChangeset
for help on using the changeset viewer.
