Changeset 8232 for trunk/MagicSoft/Mars/datacenter
- Timestamp:
- 12/13/06 14:33:07 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/datacenter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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.