summaryrefslogtreecommitdiff
path: root/opentracker.c
diff options
context:
space:
mode:
Diffstat (limited to 'opentracker.c')
-rw-r--r--opentracker.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/opentracker.c b/opentracker.c
index 9b8ea5b..1532214 100644
--- a/opentracker.c
+++ b/opentracker.c
@@ -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] );
388 388
389 if( mode == TASK_STATS_TPB ) { 389 if( mode == TASK_STATS_TPB ) {
390#ifdef WANT_COMPRESSION_GZIP 390#ifdef WANT_COMPRESSION_GZIP
391 if( strnstr( d, "gzip", l ) ) { 391 d[l-1] = 0;
392 if( strstr( d, "gzip" ) ) {
392 h->flag |= STRUCT_HTTP_FLAG_GZIP; 393 h->flag |= STRUCT_HTTP_FLAG_GZIP;
393 format |= TASK_FLAG_GZIP; 394 format |= TASK_FLAG_GZIP;
394 } 395 }