IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 18, 2006, 5:59:36 PM (20 years ago)
Author:
jhoblitt
Message:

stub out -addmaster

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/dettool.c

    r7147 r7149  
    1515static bool stacMode(pxConfig *config);
    1616static bool stacframeMode(pxConfig *config);
     17static bool addmasterMode(pxConfig *config);
    1718
    1819static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id);
     
    5960            }
    6061            break;
     62        case DETTOOL_MODE_ADDMASTER:
     63            if (!addmasterMode(config)) {
     64                goto FAIL;
     65            }
     66            break;
    6167        default:
    6268            psAbort(argv[0], "invalid option (this should not happen)");
     
    7985    if (!psDBTransaction(config->dbh)) {
    8086        psError(PS_ERR_UNKNOWN, false, "database error");
    81         return false;
     87       
    8288    }
    8389
     
    570576    return true;
    571577}
     578
     579static bool addmasterMode(pxConfig *config)
     580{
     581    PS_ASSERT_PTR_NON_NULL(config, false);
     582
     583    return true;
     584}
Note: See TracChangeset for help on using the changeset viewer.