Changeset 18061 for trunk/psModules/src/camera
- Timestamp:
- Jun 10, 2008, 10:28:59 AM (18 years ago)
- Location:
- trunk/psModules/src/camera
- Files:
-
- 2 edited
-
pmFPAfileDefine.c (modified) (4 diffs)
-
pmFPAfileIO.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPAfileDefine.c
r18035 r18061 457 457 458 458 // this function is implicitly an INPUT operation: do not create the file 459 psString realName = pmConfigConvertFilename (infiles->data[0], config, false );459 psString realName = pmConfigConvertFilename (infiles->data[0], config, false, false); 460 460 if (!realName) { 461 461 psError(PS_ERR_IO, false, "Failed to convert file name %s\n", (char *) infiles->data[0]); … … 538 538 if (i > 0) { 539 539 // this function is implicitly an INPUT operation: do not create the file 540 psString realName = pmConfigConvertFilename (infiles->data[i], config, false );540 psString realName = pmConfigConvertFilename (infiles->data[i], config, false, false); 541 541 if (!realName) { 542 542 psError(PS_ERR_IO, false, "Failed to convert file name %s", (char *) infiles->data[i]); … … 672 672 for (int i = 0; i < infiles->n; i++) { 673 673 // this function is implicitly an INPUT operation: do not create the file 674 psString realName = pmConfigConvertFilename (infiles->data[i], config, false );674 psString realName = pmConfigConvertFilename (infiles->data[i], config, false, false); 675 675 if (!realName) { 676 676 psError(PS_ERR_IO, false, "Failed to convert file name %s", (char *) infiles->data[i]); … … 925 925 // Prepend the global path to the file rule 926 926 // this function is implicitly an INPUT operation: do not create the file 927 psString tmpName = pmConfigConvertFilename(file->filerule, config, false );927 psString tmpName = pmConfigConvertFilename(file->filerule, config, false, false); 928 928 psFree (file->filerule); 929 929 file->filerule = tmpName; -
trunk/psModules/src/camera/pmFPAfileIO.c
r18028 r18061 752 752 // apply filename mangling rules (file://, path://, neb://) 753 753 bool create = file->mode == PM_FPA_MODE_WRITE ? true : false; 754 psString tmpName = pmConfigConvertFilename (file->filename, config, create );754 psString tmpName = pmConfigConvertFilename (file->filename, config, create, false); 755 755 psFree (file->filename); 756 756 file->filename = tmpName;
Note:
See TracChangeset
for help on using the changeset viewer.
