Changeset 8041
- Timestamp:
- Aug 1, 2006, 3:23:59 PM (20 years ago)
- Location:
- trunk/ippTools/src
- Files:
-
- 2 edited
-
dettool.c (modified) (6 diffs)
-
dettoolConfig.c (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/dettool.c
r7845 r8041 613 613 return false; 614 614 } 615 psString recipe = psMetadataLookupStr(&status, config->args, "-recip e");616 if (!status) { 617 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip e");615 psString recipe = psMetadataLookupStr(&status, config->args, "-recip"); 616 if (!status) { 617 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip"); 618 618 return false; 619 619 } 620 620 if (!recipe) { 621 psError(PS_ERR_UNKNOWN, true, "-recip eis required");621 psError(PS_ERR_UNKNOWN, true, "-recip is required"); 622 622 return false; 623 623 } … … 959 959 return false; 960 960 } 961 psString recipe = psMetadataLookupStr(&status, config->args, "-recip e");962 if (!status) { 963 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip e");961 psString recipe = psMetadataLookupStr(&status, config->args, "-recip"); 962 if (!status) { 963 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip"); 964 964 return false; 965 965 } 966 966 if (!recipe) { 967 psError(PS_ERR_UNKNOWN, true, "-recip eis required");967 psError(PS_ERR_UNKNOWN, true, "-recip is required"); 968 968 return false; 969 969 } … … 1308 1308 return false; 1309 1309 } 1310 psString recipe = psMetadataLookupStr(&status, config->args, "-recip e");1311 if (!status) { 1312 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip e");1310 psString recipe = psMetadataLookupStr(&status, config->args, "-recip"); 1311 if (!status) { 1312 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip"); 1313 1313 return false; 1314 1314 } 1315 1315 if (!recipe) { 1316 psError(PS_ERR_UNKNOWN, true, "-recip eis required");1316 psError(PS_ERR_UNKNOWN, true, "-recip is required"); 1317 1317 return false; 1318 1318 } … … 1579 1579 return false; 1580 1580 } 1581 psString recipe = psMetadataLookupStr(&status, config->args, "-recip e");1582 if (!status) { 1583 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip e");1581 psString recipe = psMetadataLookupStr(&status, config->args, "-recip"); 1582 if (!status) { 1583 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip"); 1584 1584 return false; 1585 1585 } 1586 1586 if (!recipe) { 1587 psError(PS_ERR_UNKNOWN, true, "-recip eis required");1587 psError(PS_ERR_UNKNOWN, true, "-recip is required"); 1588 1588 return false; 1589 1589 } … … 1733 1733 return false; 1734 1734 } 1735 psString recipe = psMetadataLookupStr(&status, config->args, "-recip e");1736 if (!status) { 1737 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip e");1735 psString recipe = psMetadataLookupStr(&status, config->args, "-recip"); 1736 if (!status) { 1737 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip"); 1738 1738 return false; 1739 1739 } 1740 1740 if (!recipe) { 1741 psError(PS_ERR_UNKNOWN, true, "-recip eis required");1741 psError(PS_ERR_UNKNOWN, true, "-recip is required"); 1742 1742 return false; 1743 1743 } … … 1752 1752 bool accept = psMetadataLookupBool(&status, config->args, "-accept"); 1753 1753 if (!status) { 1754 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip e");1754 psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -recip"); 1755 1755 return false; 1756 1756 } -
trunk/ippTools/src/dettoolConfig.c
r7822 r8041 81 81 psMetadataAddStr(addprocArgs, PS_LIST_TAIL, "-stats", 0, 82 82 "define stat (required)", NULL); 83 psMetadataAddStr(addprocArgs, PS_LIST_TAIL, "-recip e", 0,83 psMetadataAddStr(addprocArgs, PS_LIST_TAIL, "-recip", 0, 84 84 "define recipe (required)", NULL); 85 85 … … 113 113 psMetadataAddStr(addstacArgs, PS_LIST_TAIL, "-stats", 0, 114 114 "define stat (required)", NULL); 115 psMetadataAddStr(addstacArgs, PS_LIST_TAIL, "-recip e", 0,115 psMetadataAddStr(addstacArgs, PS_LIST_TAIL, "-recip", 0, 116 116 "define recipe (required)", NULL); 117 117 … … 126 126 psMetadataAddStr(stacArgs, PS_LIST_TAIL, "-stats", 0, 127 127 "search for stats", NULL); 128 psMetadataAddStr(stacArgs, PS_LIST_TAIL, "-recip e", 0,128 psMetadataAddStr(stacArgs, PS_LIST_TAIL, "-recip", 0, 129 129 "search for recipe", NULL); 130 130 … … 139 139 psMetadataAddStr(stacframeArgs, PS_LIST_TAIL, "-stats", 0, 140 140 "search for stats", NULL); 141 psMetadataAddStr(stacframeArgs, PS_LIST_TAIL, "-recip e", 0,141 psMetadataAddStr(stacframeArgs, PS_LIST_TAIL, "-recip", 0, 142 142 "search for recipe", NULL); 143 143 … … 154 154 psMetadataAddStr(addnormalizedArgs, PS_LIST_TAIL, "-stats", 0, 155 155 "define stat (required)", NULL); 156 psMetadataAddStr(addnormalizedArgs, PS_LIST_TAIL, "-recip e", 0,156 psMetadataAddStr(addnormalizedArgs, PS_LIST_TAIL, "-recip", 0, 157 157 "define recipe (required)", NULL); 158 158 … … 167 167 psMetadataAddStr(normalizedArgs, PS_LIST_TAIL, "-stats", 0, 168 168 "search for stats", NULL); 169 psMetadataAddStr(normalizedArgs, PS_LIST_TAIL, "-recip e", 0,169 psMetadataAddStr(normalizedArgs, PS_LIST_TAIL, "-recip", 0, 170 170 "search for recipe", NULL); 171 171 … … 180 180 psMetadataAddStr(normalizedframeArgs, PS_LIST_TAIL, "-stats", 0, 181 181 "search for stats", NULL); 182 psMetadataAddStr(normalizedframeArgs, PS_LIST_TAIL, "-recip e", 0,182 psMetadataAddStr(normalizedframeArgs, PS_LIST_TAIL, "-recip", 0, 183 183 "search for recipe", NULL); 184 184 … … 195 195 psMetadataAddStr(addresidArgs, PS_LIST_TAIL, "-stats", 0, 196 196 "define stats (required)", NULL); 197 psMetadataAddStr(addresidArgs, PS_LIST_TAIL, "-recip e", 0,197 psMetadataAddStr(addresidArgs, PS_LIST_TAIL, "-recip", 0, 198 198 "define recipe (required)", NULL); 199 199 … … 210 210 psMetadataAddStr(residArgs, PS_LIST_TAIL, "-stats", 0, 211 211 "search for stats", NULL); 212 psMetadataAddStr(residArgs, PS_LIST_TAIL, "-recip e", 0,212 psMetadataAddStr(residArgs, PS_LIST_TAIL, "-recip", 0, 213 213 "search for recipe", NULL); 214 214 … … 223 223 psMetadataAddStr(addresidexpArgs, PS_LIST_TAIL, "-stats", 0, 224 224 "define stats (required)", NULL); 225 psMetadataAddStr(addresidexpArgs, PS_LIST_TAIL, "-recip e", 0,225 psMetadataAddStr(addresidexpArgs, PS_LIST_TAIL, "-recip", 0, 226 226 "define recipe (required)", NULL); 227 227 psMetadataAddBool(addresidexpArgs, PS_LIST_TAIL, "-accept", 0, … … 238 238 psMetadataAddStr(residexpArgs, PS_LIST_TAIL, "-stats", 0, 239 239 "search for stats", NULL); 240 psMetadataAddStr(residexpArgs, PS_LIST_TAIL, "-recip e", 0,240 psMetadataAddStr(residexpArgs, PS_LIST_TAIL, "-recip", 0, 241 241 "search for recipe", NULL); 242 242 psMetadataAddBool(residexpArgs, PS_LIST_TAIL, "-accept", 0,
Note:
See TracChangeset
for help on using the changeset viewer.
