Changeset 8232
- Timestamp:
- 12/13/06 14:33:07 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8231 r8232 39 39 - included errno.h (with new compiler it didn't compile anymore) 40 40 - changed name of object (was same like for TPRexexp) 41 42 * datacenter/scripts/checktransfer: 43 - added check if there are temporary files 41 44 42 45 -
trunk/MagicSoft/Mars/datacenter/macros/buildsequenceentries.C
r8191 r8232 80 80 #include <iomanip> 81 81 #include <fstream> 82 #include <errno.h> 82 83 83 84 #include <TSQLRow.h> … … 654 655 655 656 TIter NextR(®exp); 656 TObject * reg=0;657 while (( reg=NextR()))657 TObject *obj=0; 658 while ((obj=NextR())) 658 659 { 659 TPRegexp reg( reg->GetName());660 TPRegexp reg(obj->GetName()); 660 661 const Ssiz_t pos = name.Index(reg, 0); 661 662 if (pos>0) -
trunk/MagicSoft/Mars/datacenter/scripts/checktransfer
r8114 r8232 62 62 done 63 63 64 65 #checking if there are temporary zipfiles 66 files=`find $datapath/rawfiles/ -name ".*\.raw\.??????"` 67 68 for file in ${files[@]} 69 do 70 printprocesslog "WARN found temporary zipfile $file" 71 done 72
Note:
See TracChangeset
for help on using the changeset viewer.