IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 18061 for trunk/pswarp


Ignore:
Timestamp:
Jun 10, 2008, 10:28:59 AM (18 years ago)
Author:
jhoblitt
Message:

add truncate parameter to pmConfigConvertFilename()

Location:
trunk/pswarp/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/pswarp/src/pswarpDefineSkycell.c

    r18006 r18061  
    3838
    3939    // this function is implicitly an INPUT operation: do not create the file
    40     psString realName = pmConfigConvertFilename (infiles->data[0], config, false);
     40    psString realName = pmConfigConvertFilename (infiles->data[0], config, false, false);
    4141    if (!realName) {
    4242        psError(PS_ERR_IO, false, "Failed to convert file name %s\n", (char *) infiles->data[0]);
  • trunk/pswarp/src/pswarpLoop.c

    r17955 r18061  
    103103    FILE *statsFile = NULL;             // File stream for statistics
    104104    if (mdok && statsName && strlen(statsName) > 0) {
    105         psString resolved = pmConfigConvertFilename(statsName, config, true);
     105        psString resolved = pmConfigConvertFilename(statsName, config, true, false);
    106106        statsFile = fopen(resolved, "w");
    107107        if (!statsFile) {
Note: See TracChangeset for help on using the changeset viewer.