IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 15, 2003, 11:21:54 PM (23 years ago)
Author:
eugene
Message:

support for -daemon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/imregister/imreg/modify.c

    r70 r74  
    3434
    3535    if (output.mef2split) {
    36       if (image[i].mode == MODE_MEF) {
     36      if (image[i].mode == M_MEF) {
    3737        root = filerootname (image[i].filename);
    3838        ext = fileextname (image[i].filename);
     
    4141        snprintf (image[i].pathname, 128, "%s/%s", path, root);
    4242        snprintf (image[i].filename, 64,  "%s%02d.%s", root, image[i].ccd, ext);
    43         image[i].mode = MODE_SPLIT;
     43        image[i].mode = M_SPLIT;
    4444        free (root);
    4545        free (ext);
     
    4949
    5050    if (output.split2mef) {
    51       if (image[i].mode == MODE_SPLIT) {
     51      if (image[i].mode == M_SPLIT) {
    5252        ext  = fileextname (image[i].filename);
    5353        root = filebasename (image[i].pathname);
     
    5656        snprintf (image[i].pathname, 128, "%s", path);
    5757        snprintf (image[i].filename, 64,  "%s.%s", root, ext);
    58         image[i].mode = MODE_MEF;
     58        image[i].mode = M_MEF;
    5959        free (root);
    6060        free (ext);
Note: See TracChangeset for help on using the changeset viewer.