Changeset 21479 for trunk/ippTools/src/pztool.c
- Timestamp:
- Feb 13, 2009, 4:33:10 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/pztool.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/pztool.c
r21402 r21479 463 463 } 464 464 465 #ifdef notdef 466 // we've changed to use -advance instead 465 467 if (!copydoneCompleteExp(config)) { 466 468 // rollback … … 471 473 return false; 472 474 } 473 475 #endif 474 476 // point of no return 475 477 if (!psDBCommit(config->dbh)) { … … 502 504 PXOPT_LOOKUP_STR(end_stage, config->args, "-end_stage", false, false); 503 505 PXOPT_LOOKUP_STR(label, config->args, "-label", false, false); 506 PXOPT_LOOKUP_U64(limit, config->args, "-limit", false, false); 504 507 505 508 // find all exposures that have had all of their imfiles downloaded but do … … 522 525 } 523 526 psFree(where); 527 528 // treat limit == 0 as "no limit" 529 if (limit) { 530 psString limitString = psDBGenerateLimitSQL(limit); 531 psStringAppend(&query, " %s", limitString); 532 psFree(limitString); 533 } 524 534 525 535 // find completed exps
Note:
See TracChangeset
for help on using the changeset viewer.
