From e34be5e57367f5c175e4519953b46c2069004080 Mon Sep 17 00:00:00 2001 From: Jordan Lee Date: Wed, 23 Jan 2013 22:43:16 +0000 Subject: [PATCH] (libT) rename-test tracers --- libtransmission/torrent.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libtransmission/torrent.c b/libtransmission/torrent.c index 47016914e..414a12593 100644 --- a/libtransmission/torrent.c +++ b/libtransmission/torrent.c @@ -1732,8 +1732,11 @@ verifyTorrent (void * vtor) void tr_torrentVerify (tr_torrent * tor) { - if (tr_isTorrent (tor)) - tr_runInEventThread (tor->session, verifyTorrent, tor); + if (tr_isTorrent (tor)) + { + tr_verifyRemove (tor); + tr_runInEventThread (tor->session, verifyTorrent, tor); + } } void