IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 38720


Ignore:
Timestamp:
Sep 9, 2015, 4:15:13 PM (11 years ago)
Author:
eugene
Message:

update delete-by-extern-id

Location:
branches/eam_branches/ipp-20150625/Ohana/src/dvomerge/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20150625/Ohana/src/dvomerge/src/ReadDeleteListExternID.c

    r37807 r38720  
    4747      // confirm we have 9 fields broken by 8 spaces:
    4848      space = c0; // pointer to track the space-separated words
    49       indexPoint = c0; // pointer to the ID on this line
     49      indexPoint = strchr(c0, ' '); // pointer to the ID on this line
    5050
    51       for (j = 0; j < 8; j++) {
     51      for (j = 0; j < 9; j++) {
    5252        space = strchr(space, ' ');
    5353        if (!space) {
     
    6262      indexList[Nindex] = index;
    6363
    64       // fprintf (stderr, "index: %d, line: %s\n", index, c0);
     64      fprintf (stderr, "index: %d, line: %s\n", index, c0);
    6565
    6666      Nindex ++;
  • branches/eam_branches/ipp-20150625/Ohana/src/dvomerge/src/dvorepairDeleteImagesByExternID.c

    r38596 r38720  
    102102  int NdeleteIDs;
    103103  int *deleteIDs = ReadDeleteListExternID(delList, &NdeleteIDs);
     104  exit (2);
    104105
    105106  int NdeleteImages = 0;
Note: See TracChangeset for help on using the changeset viewer.