From b6819d6a12f3af4a244db68d1e97d61fef773631 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sat, 30 Jun 2007 15:16:08 +0000 Subject: [PATCH] fix r2247 oops --- libtransmission/torrent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/torrent.c b/libtransmission/torrent.c index 1b83d95be..abd846244 100644 --- a/libtransmission/torrent.c +++ b/libtransmission/torrent.c @@ -948,7 +948,7 @@ torrentThreadLoop ( void * _tor ) tr_lockInit( &checkFilesLock ); } - tor->recheckFlag = !tr_ioCheckFiles( tor, TR_RECHECK_FAST ); + tor->recheckFlag = tr_ioCheckFiles( tor, TR_RECHECK_FAST ); /* loop until the torrent is being deleted */ while( ! ( tor->dieFlag && (tor->runStatus == TR_RUN_STOPPED) ) )