From 304f9f7f18a52e8c33e4ff1dfe90fd75ba382c7b Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sun, 7 Oct 2007 16:25:02 +0000 Subject: [PATCH] get rid of a confusing error message that describes a harmless situation --- libtransmission/tracker.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libtransmission/tracker.c b/libtransmission/tracker.c index 5d7d0c07a..2707e016a 100644 --- a/libtransmission/tracker.c +++ b/libtransmission/tracker.c @@ -583,10 +583,8 @@ onScrapeResponse( struct evhttp_request * req, void * vt ) Torrent * tor = getExistingTorrent( t, hash ); ++numResponses; - if( !tor ) { - tr_err( "Got an unrequested scrape response!" ); + if( !tor ) continue; - } publishErrorClear( tor );