From 679a594f4eb2e1a66eecef9b835cb4913e673e9e Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Fri, 24 Apr 2009 17:40:40 +0000 Subject: [PATCH] fixed typo in verbose bandwidth logging --- src/peer_connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/peer_connection.cpp b/src/peer_connection.cpp index 29356be4b..a5b282de3 100644 --- a/src/peer_connection.cpp +++ b/src/peer_connection.cpp @@ -3552,7 +3552,7 @@ namespace libtorrent if (m_send_buffer.empty()) { (*m_logger) << time_now_string() << " *** SEND BUFFER DEPLETED [" - " quota: " << m_bandwidth_limit[download_channel].quota_left() << + " quota: " << m_bandwidth_limit[upload_channel].quota_left() << " ignore: " << (m_ignore_bandwidth_limits?"yes":"no") << " buf: " << m_send_buffer.size() << " connecting: " << (m_connecting?"yes":"no") <<