Changeset 27748
- Timestamp:
- Apr 23, 2010, 11:29:05 AM (16 years ago)
- Location:
- trunk/ippTools/src
- Files:
-
- 2 edited
-
regtool.c (modified) (2 diffs)
-
regtoolConfig.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/regtool.c
r27536 r27748 350 350 PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false); 351 351 PXOPT_LOOKUP_BOOL(faulted, config->args, "-faulted", false); 352 PXOPT_LOOKUP_BOOL(allfiles, config->args, "-allfiles", false); 353 if (allfiles) { 354 faulted = false; 355 } 352 356 PXOPT_LOOKUP_BOOL(simple, config->args, "-simple", false); 353 357 PXOPT_LOOKUP_BOOL(all, config->args, "-all", false); … … 389 393 // list only faulted rows 390 394 psStringAppend(&query, " %s", "AND rawImfile.fault != 0"); 391 } else {395 } else if (!allfiles) { 392 396 // don't list faulted rows 393 397 psStringAppend(&query, " %s", "AND rawImfile.fault = 0"); -
trunk/ippTools/src/regtoolConfig.c
r27315 r27748 144 144 ADD_OPT(U64, processedimfileArgs, "-limit", "limit result set to N items", 0); 145 145 ADD_OPT(Bool, processedimfileArgs, "-faulted", "only return imfiles with a fault status set", false); 146 ADD_OPT(Bool, processedimfileArgs, "-allfiles", "return imfiles regardless of fault status", false); 146 147 ADD_OPT(Bool, processedimfileArgs, "-all", "list without search arguments", false); 147 148 ADD_OPT(Bool, processedimfileArgs, "-simple", "use the simple output format", false);
Note:
See TracChangeset
for help on using the changeset viewer.
