blob: 62429e75dd9587a7228db9202b53adcf78788ae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Signed-off-by: Markos Chandras <hwoarang@gentoo.org>
X-Gentoo-Bug: 559728
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=559728
From 06ce6a2d8b048c5791e2cc5acd1dfe8845680a84 Mon Sep 17 00:00:00 2001
From: Chocobo1 <Chocobo1@users.noreply.github.com>
Date: Sat, 1 Aug 2015 20:29:43 +0800
Subject: [PATCH] Fix typo
---
src/torrent.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/torrent.cpp b/src/torrent.cpp
index d2da131..2e276ec 100644
--- a/src/torrent.cpp
+++ b/src/torrent.cpp
@@ -675,7 +675,7 @@ namespace libtorrent
}
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING
- debug_log("*** LEAVING SEED MODE (%s)", seed ? "as seed" : "as non-seed");
+ debug_log("*** LEAVING SEED MODE (%s)", m_seed_mode ? "as seed" : "as non-seed");
#endif
m_seed_mode = false;
// seed is false if we turned out not
|