diff options
Diffstat (limited to 'opentracker.c')
-rw-r--r-- | opentracker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opentracker.c b/opentracker.c index 5da9829..65c9c93 100644 --- a/opentracker.c +++ b/opentracker.c | |||
@@ -420,7 +420,7 @@ SCRAPE_WORKAROUND: | |||
420 | continue; | 420 | continue; |
421 | } | 421 | } |
422 | /* ignore this, when we have less than 20 bytes */ | 422 | /* ignore this, when we have less than 20 bytes */ |
423 | if( scan_urlencoded_query( &c, data = c, SCAN_SEARCHPATH_VALUE ) < sizeof(ot_hash) ) HTTPERROR_400_PARAM; | 423 | if( scan_urlencoded_query( &c, data = c, SCAN_SEARCHPATH_VALUE ) < (ssize_t)sizeof(ot_hash) ) HTTPERROR_400_PARAM; |
424 | if( scrape_count < OT_MAXMULTISCRAPE_COUNT ) | 424 | if( scrape_count < OT_MAXMULTISCRAPE_COUNT ) |
425 | memmove( multiscrape_buf + scrape_count++, data, sizeof(ot_hash) ); | 425 | memmove( multiscrape_buf + scrape_count++, data, sizeof(ot_hash) ); |
426 | break; | 426 | break; |