From 555b249322c61eb2ac71ff947adcd7467ed6daed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C5=93ur?= Date: Wed, 6 Dec 2023 06:39:24 +0100 Subject: [PATCH] documentation fix: create empty files on tr_torrent::start (#6340) --- libtransmission/torrent.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libtransmission/torrent.cc b/libtransmission/torrent.cc index ede4ae400..f9386c996 100644 --- a/libtransmission/torrent.cc +++ b/libtransmission/torrent.cc @@ -886,8 +886,8 @@ void tr_torrent::on_metainfo_completed() if (session->shouldFullyVerifyAddedTorrents() || !is_new_torrent_a_seed()) { - // Potentially, we are in `tr_torrentNew`, - // and we don't want any file created before `torrentStart` + // Potentially, we are in `tr_torrent::init`, + // and we don't want any file created before `tr_torrent::start` // so we Verify but we don't Create files. tr_torrentVerify(this); }