- Timestamp:
- Jul 30, 2010, 9:31:50 AM (16 years ago)
- Location:
- branches/eam_branches/ipp-20100621/ippTools/src
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
magictool.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20100621/ippTools/src
- Property svn:ignore
-
old new 39 39 warptool 40 40 staticskytool 41 41 bgtool 42 42 diffphottool
-
- Property svn:ignore
-
branches/eam_branches/ipp-20100621/ippTools/src/magictool.c
r28279 r28794 246 246 psS64 diff_id = psMetadataLookupS64(NULL, row, "diff_id"); // difference identifier 247 247 bool inverse = psMetadataLookupU64(NULL, row, "inverse"); // Inverse subtraction? Note types! 248 psString diff_data_group = psMetadataLookupStr(NULL, row, "diff_data_group"); 248 249 249 250 // create a new magicRun for this group … … 256 257 "dirty", // workdir_state 257 258 label, 258 data_group ? data_group : label,259 data_group ? data_group : (diff_data_group ? diff_data_group : label), 259 260 dvodb, 260 261 registered, … … 521 522 psFree(where); 522 523 524 psStringAppend(&query, "\nORDER BY priority DESC, magic_id"); 525 523 526 // treat limit == 0 as "no limit" 524 527 if (limit) { … … 830 833 psFree(where); 831 834 835 psStringAppend(&query, "\nORDER BY priority DESC, magic_id"); 836 832 837 // treat limit == 0 as "no limit" 833 838 if (limit) { … … 1365 1370 // check that state is a valid string value 1366 1371 if (!( 1367 (strncmp(state, "new", 4) == 0)1368 || (strncmp(state, "full", 5) == 0)1369 || (strncmp(state, "drop", 5) == 0)1370 || (strncmp(state, "reg", 4) == 0)1372 (strncmp(state, "new", 3) == 0) 1373 || (strncmp(state, "full", 4) == 0) 1374 || (strncmp(state, "drop", 4) == 0) 1375 || (strncmp(state, "reg", 3) == 0) 1371 1376 ) 1372 1377 ) {
Note:
See TracChangeset
for help on using the changeset viewer.
