mirror of
https://erdgeist.org/gitweb/opentracker
synced 2024-05-10 07:54:50 +00:00
Missed the second strnstr... fixed.
This commit is contained in:
@ -388,7 +388,8 @@ LOG_TO_STDERR( "sync: %d.%d.%d.%d\n", h->ip[0], h->ip[1], h->ip[2], h->ip[3] );
|
||||
|
||||
if( mode == TASK_STATS_TPB ) {
|
||||
#ifdef WANT_COMPRESSION_GZIP
|
||||
if( strnstr( d, "gzip", l ) ) {
|
||||
d[l-1] = 0;
|
||||
if( strstr( d, "gzip" ) ) {
|
||||
h->flag |= STRUCT_HTTP_FLAG_GZIP;
|
||||
format |= TASK_FLAG_GZIP;
|
||||
}
|
||||
|
Reference in New Issue
Block a user