Changeset 8232


Ignore:
Timestamp:
12/13/06 14:33:07 (18 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8231 r8232  
    3939     - included errno.h (with new compiler it didn't compile anymore)
    4040     - changed name of object (was same like for TPRexexp)
     41
     42   * datacenter/scripts/checktransfer:
     43     - added check if there are temporary files
    4144
    4245
  • trunk/MagicSoft/Mars/datacenter/macros/buildsequenceentries.C

    r8191 r8232  
    8080#include <iomanip>
    8181#include <fstream>
     82#include <errno.h>
    8283
    8384#include <TSQLRow.h>
     
    654655
    655656            TIter NextR(&regexp);
    656             TObject *reg=0;
    657             while ((reg=NextR()))
     657            TObject *obj=0;
     658            while ((obj=NextR()))
    658659            {
    659                 TPRegexp reg(reg->GetName());
     660                TPRegexp reg(obj->GetName());
    660661                const Ssiz_t pos = name.Index(reg, 0);
    661662                if (pos>0)
  • trunk/MagicSoft/Mars/datacenter/scripts/checktransfer

    r8114 r8232  
    6262done
    6363
     64
     65#checking if there are temporary zipfiles
     66files=`find $datapath/rawfiles/ -name ".*\.raw\.??????"`
     67
     68for file in ${files[@]}
     69do
     70   printprocesslog "WARN found temporary zipfile $file"
     71done
     72
Note: See TracChangeset for help on using the changeset viewer.