Changeset 25 for trunk/orca/files.c
- Timestamp:
- 02/06/06 23:30:15 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/files.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/files.c
r2 r25 82 82 OString* str = orSTRING(a1); 83 83 orCTermStr( str ); 84 if( orIsDir( str->charArray + a1->series.i ndex) > -1 )84 if( orIsDir( str->charArray + a1->series.it ) > -1 ) 85 85 logic = 1; 86 86 orResult( OT_LOGIC, logic ); … … 93 93 OString* str = orSTRING(a1); 94 94 orCTermStr( str ); 95 size = orFileSize( str->charArray + a1->series.i ndex);95 size = orFileSize( str->charArray + a1->series.it ); 96 96 if( size < 0 ) 97 97 { … … 110 110 OString* str = orSTRING(a1); 111 111 orCTermStr( str ); 112 status = orIsDir( str->charArray + a1->series.i ndex);112 status = orIsDir( str->charArray + a1->series.it ); 113 113 if( status < 0 ) 114 114 status = 0; … … 122 122 OString* str = orSTRING(a1); 123 123 orCTermStr( str ); 124 status = orFileModified( str->charArray + a1->series.i ndex, orRESULT );124 status = orFileModified( str->charArray + a1->series.it, orRESULT ); 125 125 if( status < 0 ) 126 126 { … … 254 254 orCTermStr( str ); 255 255 256 fn = str->charArray + a1->series.i ndex;256 fn = str->charArray + a1->series.it; 257 257 n = orIsDir( fn ); 258 258 if( n < 0 ) … … 506 506 507 507 str = orSTRING(a1); 508 len = str->used - a1->series.i ndex;508 len = str->used - a1->series.it; 509 509 blen = len + (len / 99) + 600; 510 510 bin = orMakeString( blen /*+ 4*/ ); … … 513 513 { 514 514 ret = BZ2_bzBuffToBuffCompress( bin->charArray /*+ 4*/, &blen, 515 str->charArray + a1->series.i ndex, len,515 str->charArray + a1->series.it, len, 516 516 3, 0, 0 ); 517 517 if( ret == BZ_OUTBUFF_FULL )
