From 814f7363a4d720e07dadc4a62f7ab2f26d2b77a6 Mon Sep 17 00:00:00 2001 From: arvidn Date: Sat, 17 Dec 2016 02:05:34 -0500 Subject: [PATCH] deprecate identify_client() and fingerprint type --- ChangeLog | 1 + src/session_impl.cpp | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index f8fc71d3f..746aef87b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,4 @@ + * deprecate identify_client() and fingerprint type * make sequence number for mutable DHT items backed by std::int64_t * tweaked storage_interface to have stronger type safety * deprecate relative times in torrent_status, replaced by std::chrono::time_point diff --git a/src/session_impl.cpp b/src/session_impl.cpp index d9094000d..f84130f1b 100644 --- a/src/session_impl.cpp +++ b/src/session_impl.cpp @@ -6898,9 +6898,8 @@ namespace aux { for (auto const& p : resp.peers) { - debug_log(" %16s %5d %s %s", p.hostname.c_str(), p.port - , p.pid.is_all_zeros() ? "" : to_hex(p.pid).c_str() - , identify_client(p.pid).c_str()); + debug_log(" %16s %5d %s", p.hostname.c_str(), p.port + , p.pid.is_all_zeros() ? "" : to_hex(p.pid).c_str()); } for (auto const& p : resp.peers4) {