IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 30, 2006, 3:08:45 PM (20 years ago)
Author:
magnier
Message:

fixed instances of psStringSplit to use new API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/astrom/pmFPAConceptsGet.c

    r6872 r7016  
    163163        // Now, need to get the "given"s
    164164        if (strlen(givenCols) || strlen(givenPS)) {
    165             psList *cols = psStringSplit(givenCols, ",;"); // List of column names
    166             psList *values = psStringSplit(givenPS, ",;"); // List of value names for the columns
     165            psList *cols = psStringSplit(givenCols, ",;", true); // List of column names
     166            psList *values = psStringSplit(givenPS, ",;", true); // List of value names for the columns
    167167            psMetadata *selection = psMetadataAlloc(); // The stuff to select in the DB
    168168            if (cols->n != values->n) {
     
    723723                psString source = sourceItem->data.V; // The source string
    724724
    725                 psList *secList = psStringSplit(sections, " ;"); // List of sections
     725                psList *secList = psStringSplit(sections, " ;", true); // List of sections
    726726                psListIterator *secIter = psListIteratorAlloc(secList, PS_LIST_HEAD, false); // Iterator over
    727727                // sections
Note: See TracChangeset for help on using the changeset viewer.