IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 19, 2006, 5:20:04 PM (20 years ago)
Author:
Paul Price
Message:

Adding string.h where required

Location:
trunk/ippTools/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src

    • Property svn:ignore
      •  

        old new  
        1010*.lo
        1111p0tool
        12 p1search
        13 p2search
         12p1tool
         13p2tool
        1414pxadmin
        1515pzgetexp
        1616pzgetimfiles
        17 pzsearch
         17pztool
        1818dettool
        1919pxinject
  • trunk/ippTools/src/pzgetexp.c

    r8733 r8849  
    33#endif
    44
     5#include <stdio.h>
     6#include <string.h>
    57#include <stdlib.h>
    6 #include <stdio.h>
    78
    89#include "pxtools.h"
     
    2324    // a metadatadb function to retrun the last entry without removing it from
    2425    // the database
    25     psArray *summitExps = summitExpSelectRowObjects(config->dbh, NULL, 0); 
     26    psArray *summitExps = summitExpSelectRowObjects(config->dbh, NULL, 0);
    2627    if (summitExps) {
    2728        haveLastFileSet = true;
     
    3132
    3233    // invoke dsproductls
    33     // dsproductls --uri <> --last_fileset <> 
     34    // dsproductls --uri <> --last_fileset <>
    3435    bool status = false;
    3536    psString uri = psMetadataLookupStr(&status, config->args, "-uri");
     
    138139        char *uri       = psListGetAndIncrement(tokenCursor);
    139140        char *exp_id    = psListGetAndIncrement(tokenCursor); // fileset
    140         char *time      = psListGetAndIncrement(tokenCursor); // datetime 
     141        char *time      = psListGetAndIncrement(tokenCursor); // datetime
    141142        char *exp_type  = psListGetAndIncrement(tokenCursor); // type
    142143
     
    162163        psArrayAdd(summitExps, 0, row);
    163164    }
    164    
     165
    165166    psFree(lineCursor);
    166167    psFree(doc);
Note: See TracChangeset for help on using the changeset viewer.