Changeset 24257 for titan/titan/sock.h


Ignore:
Timestamp:
10/13/13 10:20:34 (10 years ago)
Author:
nit
Message:

fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/sock.h

    r24256 r24257  
    792792                {
    793793                        if(gzip == -1)
    794                                 unzipret = ounzip(buf, count, &outbuf, &outlen, MINMALLOC * 100, 1);
     794                                unzipret = ounzip(buf, count, &outbuf, &outlen, MINMALLOC * 100, 3);
    795795                        else
    796796                        {
    797797                                memcpy(outbuf, buf, gzip);
    798798                                char* tmpoutbuf = outbuf + gzip;
    799                                 unzipret = ounzip(buf + gzip, count - gzip, &tmpoutbuf, &outlen, MINMALLOC * 100, 1);
     799                                unzipret = ounzip(buf + gzip, count - gzip, &tmpoutbuf, &outlen, MINMALLOC * 100, 3);
    800800                                outlen += gzip;                 
    801801                        }
Note: See TracChangeset for help on using the changeset viewer.