From 430534bf3f000e165dc5fef2919a4703d72e6a3b Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Tue, 10 Jul 2007 18:55:14 +0000 Subject: [PATCH] fixed incorrect assert --- src/bt_peer_connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bt_peer_connection.cpp b/src/bt_peer_connection.cpp index f15dcaf04..5b63f26cd 100755 --- a/src/bt_peer_connection.cpp +++ b/src/bt_peer_connection.cpp @@ -1262,7 +1262,7 @@ namespace libtorrent (*m_logger) << time_now_string() << " ==> EXTENSIONS\n"; #endif assert(m_supports_extensions); - assert(m_sent_handshake && m_sent_bitfield); + assert(m_sent_handshake); entry handshake(entry::dictionary_t); entry extension_list(entry::dictionary_t);