Changeset 25 for trunk/orca/files.c

Show
Ignore:
Timestamp:
02/06/06 23:30:15 (3 years ago)
Author:
krobillard
Message:

series which/index renamed to n/it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/files.c

    r2 r25  
    8282    OString* str = orSTRING(a1); 
    8383    orCTermStr( str ); 
    84     if( orIsDir( str->charArray + a1->series.index ) > -1 ) 
     84    if( orIsDir( str->charArray + a1->series.it ) > -1 ) 
    8585        logic = 1; 
    8686    orResult( OT_LOGIC, logic ); 
     
    9393    OString* str = orSTRING(a1); 
    9494    orCTermStr( str ); 
    95     size = orFileSize( str->charArray + a1->series.index ); 
     95    size = orFileSize( str->charArray + a1->series.it ); 
    9696    if( size < 0 ) 
    9797    { 
     
    110110    OString* str = orSTRING(a1); 
    111111    orCTermStr( str ); 
    112     status = orIsDir( str->charArray + a1->series.index ); 
     112    status = orIsDir( str->charArray + a1->series.it ); 
    113113    if( status < 0 ) 
    114114        status = 0; 
     
    122122    OString* str = orSTRING(a1); 
    123123    orCTermStr( str ); 
    124     status = orFileModified( str->charArray + a1->series.index, orRESULT ); 
     124    status = orFileModified( str->charArray + a1->series.it, orRESULT ); 
    125125    if( status < 0 ) 
    126126    { 
     
    254254        orCTermStr( str ); 
    255255 
    256         fn = str->charArray + a1->series.index; 
     256        fn = str->charArray + a1->series.it; 
    257257        n = orIsDir( fn ); 
    258258        if( n < 0 ) 
     
    506506 
    507507    str = orSTRING(a1); 
    508     len = str->used - a1->series.index; 
     508    len = str->used - a1->series.it; 
    509509    blen = len + (len / 99) + 600; 
    510510    bin = orMakeString( blen /*+ 4*/ ); 
     
    513513    { 
    514514        ret = BZ2_bzBuffToBuffCompress( bin->charArray /*+ 4*/, &blen, 
    515                                         str->charArray + a1->series.index, len, 
     515                                        str->charArray + a1->series.it, len, 
    516516                                        3, 0, 0 ); 
    517517        if( ret == BZ_OUTBUFF_FULL )