Changeset 32975 for trunk/ippTools/src/disttool.c
- Timestamp:
- Dec 19, 2011, 1:27:24 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/disttool.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/disttool.c
r32942 r32975 34 34 static bool updaterunMode(pxConfig *config); 35 35 static bool revertrunMode(pxConfig *config); 36 static bool rerunMode(pxConfig *config);36 static bool startoverMode(pxConfig *config); 37 37 static bool pendingcomponentMode(pxConfig *config); 38 38 static bool addprocessedcomponentMode(pxConfig *config); … … 86 86 MODECASE(DISTTOOL_MODE_UPDATERUN, updaterunMode); 87 87 MODECASE(DISTTOOL_MODE_REVERTRUN, revertrunMode); 88 MODECASE(DISTTOOL_MODE_ RERUN, rerunMode);88 MODECASE(DISTTOOL_MODE_STARTOVER, startoverMode); 89 89 MODECASE(DISTTOOL_MODE_PENDINGCOMPONENT, pendingcomponentMode); 90 90 MODECASE(DISTTOOL_MODE_ADDPROCESSEDCOMPONENT, addprocessedcomponentMode); … … 168 168 169 169 PXOPT_LOOKUP_BOOL(single, config->args, "-singlefilter", false); 170 PXOPT_LOOKUP_BOOL(rerun, config->args, "-rerun", false); 170 171 171 172 if (use_alternate) { … … 407 408 psStringAppend(&query, " AND (camRun.state = 'full')"); 408 409 } 410 } 411 if (!rerun) { 412 psStringAppend(&query, " AND (distRun.dist_id IS NULL)"); 409 413 } 410 414 … … 646 650 } 647 651 648 static bool rerunMode(pxConfig *config)652 static bool startoverMode(pxConfig *config) 649 653 { 650 654 psMetadata *where = psMetadataAlloc();
Note:
See TracChangeset
for help on using the changeset viewer.
