From ea8668d80fa2adcdf737ec5d504b4516e8426855 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 23 Apr 2009 16:10:54 +0000 Subject: [PATCH] 2009-04-24 Tatsuhiro Tsujikawa Code cleanup * src/PeerListProcessor.h --- ChangeLog | 5 +++++ src/PeerListProcessor.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6ff4490f..db611ff4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-04-24 Tatsuhiro Tsujikawa + + Code cleanup + * src/PeerListProcessor.h + 2009-04-23 Tatsuhiro Tsujikawa Removed RequestGroupAware diff --git a/src/PeerListProcessor.h b/src/PeerListProcessor.h index 82e407c8..67d12930 100644 --- a/src/PeerListProcessor.h +++ b/src/PeerListProcessor.h @@ -64,7 +64,7 @@ public: continue; } static const std::string IP = "ip"; - static const std::string PORT("port"); + static const std::string PORT = "port"; const bencode::BDE& ip = peerDict[IP]; const bencode::BDE& port = peerDict[PORT]; if(!ip.isString() || !port.isInteger() ||