Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8502 in orxonox.OLD for branches/network/src/lib


Ignore:
Timestamp:
Jun 15, 2006, 10:35:20 PM (19 years ago)
Author:
rennerc
Message:

fixed bug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/lib/network/network_stream.cc

    r8497 r8502  
    510510    int compLength = 0;
    511511    if ( this->isServer() )
    512       Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictServer );
     512      compLength = Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictServer );
    513513    else
    514       Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictClient );
     514      compLength = Zip::getInstance()->zip( buf, offset, compBuf, UDP_PACKET_SIZE, dictClient );
    515515   
    516516    if ( compLength < 0 )
Note: See TracChangeset for help on using the changeset viewer.